get-proposal-votes
Retrieve votes for a specific governance proposal on the Osmosis blockchain by entering the proposal ID, with optional limit on the number of votes returned.
Instructions
Returns votes for a specific governance proposal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional: maximum number of votes to return (default 10) | |
proposalId | Yes | The proposal ID |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Optional: maximum number of votes to return (default 10)",
"type": "string"
},
"proposalId": {
"description": "The proposal ID",
"type": "string"
}
},
"required": [
"proposalId"
],
"type": "object"
}