vote-proposal
Submit a vote on Osmosis blockchain governance proposals by specifying your mnemonic, proposal ID, and vote option. Include optional metadata, gas details, or a memo for additional context.
Instructions
Vote on a governance proposal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
memo | No | Transaction memo | |
metadata | No | Optional vote metadata/reasoning | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
option | Yes | Vote option | |
proposalId | Yes | ID of the proposal to vote on |
Input Schema (JSON Schema)
{
"properties": {
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"metadata": {
"description": "Optional vote metadata/reasoning",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"option": {
"description": "Vote option",
"enum": [
"yes",
"no",
"abstain",
"no_with_veto"
],
"type": "string"
},
"proposalId": {
"description": "ID of the proposal to vote on",
"type": "string"
}
},
"required": [
"mnemonic",
"proposalId",
"option"
],
"type": "object"
}