buyInFailMarket
Purchase tokens in the fail market for a specific proposal on the Futarchy MCP Server. Input the proposal ID, amount to buy, and user’s public key to execute the trade.
Instructions
Buy tokens in the fail 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"
}