intentVoteNaniProposal
Cast a vote on specific NANIDAO governance proposals by specifying the proposal ID, approval choice, and blockchain chain ID. Simplify participation in decentralized decision-making.
Instructions
Vote on an existing NANIDAO governance proposal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approve | Yes | True to vote yes, false to vote no | |
chainId | Yes | The chain ID to vote on | |
proposalId | Yes | The ID of the proposal to vote on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"approve": {
"description": "True to vote yes, false to vote no",
"type": "boolean"
},
"chainId": {
"description": "The chain ID to vote on",
"type": "number"
},
"proposalId": {
"description": "The ID of the proposal to vote on",
"type": "number"
}
},
"required": [
"proposalId",
"approve",
"chainId"
],
"type": "object"
}