fund-community-pool
Transfer tokens to the Osmosis blockchain community pool using a BIP-39 mnemonic, specifying amount, gas, and memo for enhanced transaction control.
Instructions
Fund the community pool with tokens
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount to fund community pool with | |
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount to fund community pool with",
"items": {
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"denom",
"amount"
],
"type": "object"
},
"type": "array"
},
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
}
},
"required": [
"mnemonic",
"amount"
],
"type": "object"
}