create-cosmwasm-pool
Create custom CosmWasm-based pools on the Osmosis blockchain by specifying code ID, instantiation message, and transaction details. Simplify pool creation with a structured input schema.
Instructions
Create a CosmWasm-based pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
codeId | Yes | CosmWasm code ID for the pool contract | |
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
instantiateMsg | Yes | Instantiation message for the CosmWasm contract | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction |
Input Schema (JSON Schema)
{
"properties": {
"codeId": {
"description": "CosmWasm code ID for the pool contract",
"type": "string"
},
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"instantiateMsg": {
"description": "Instantiation message for the CosmWasm contract",
"type": "object"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
}
},
"required": [
"mnemonic",
"codeId",
"instantiateMsg"
],
"type": "object"
}