buyInPassMarket
Buy tokens for a specific proposal in the pass market using your public key on the Futarchy MCP Server. Facilitates participation in governance and decision-making processes.
Instructions
Buy tokens in the pass market for a proposal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount to buy | |
proposalId | Yes | The ID of the proposal to trade in | |
user | Yes | User's public key |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount to buy",
"type": "number"
},
"proposalId": {
"description": "The ID of the proposal to trade in",
"type": "string"
},
"user": {
"description": "User's public key",
"type": "string"
}
},
"required": [
"proposalId",
"amount",
"user"
],
"type": "object"
}