createProposal
Submit a new proposal for a DAO on the Futarchy protocol by specifying the DAO ID, proposal description URL, and token amounts for liquidity provision. Simplifies DAO governance on Solana.
Instructions
Create a new proposal for a DAO
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseTokensToLP | Yes | Amount of base tokens to LP | |
daoId | Yes | The ID of the DAO to create a proposal for | |
descriptionUrl | Yes | URL to the proposal description | |
quoteTokensToLP | Yes | Amount of quote tokens to LP |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseTokensToLP": {
"description": "Amount of base tokens to LP",
"type": "number"
},
"daoId": {
"description": "The ID of the DAO to create a proposal for",
"type": "string"
},
"descriptionUrl": {
"description": "URL to the proposal description",
"type": "string"
},
"quoteTokensToLP": {
"description": "Amount of quote tokens to LP",
"type": "number"
}
},
"required": [
"daoId",
"descriptionUrl",
"baseTokensToLP",
"quoteTokensToLP"
],
"type": "object"
}