add_bounty
Add a bounty to a Manifold Markets prediction market by specifying the market ID and the amount of mana to contribute, enhancing incentives for accurate predictions.
Instructions
Add bounty to a market
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of mana to add as bounty | |
contractId | Yes | Market ID |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount of mana to add as bounty",
"type": "number"
},
"contractId": {
"description": "Market ID",
"type": "string"
}
},
"required": [
"contractId",
"amount"
],
"type": "object"
}