update-params
Modify module-specific parameters on the Osmosis blockchain using governance or admin authority. Input includes mnemonic, authority address, module type, and updated parameters.
Instructions
Update module parameters (governance/admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authority | Yes | Authority address (usually governance module) | |
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 | |
module | Yes | Module to update parameters for | |
params | Yes | New parameters to set (module-specific structure) |
Input Schema (JSON Schema)
{
"properties": {
"authority": {
"description": "Authority address (usually governance module)",
"type": "string"
},
"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"
},
"module": {
"description": "Module to update parameters for",
"enum": [
"gamm",
"incentives",
"lockup",
"poolincentives",
"superfluid",
"tokenfactory",
"protorev"
],
"type": "string"
},
"params": {
"description": "New parameters to set (module-specific structure)",
"type": "object"
}
},
"required": [
"mnemonic",
"authority",
"module",
"params"
],
"type": "object"
}