upgrade-proposal
Generate and submit a software upgrade proposal for the Osmosis blockchain, including title, description, upgrade name, block height, and initial deposit, using a BIP-39 mnemonic for transaction signing.
Instructions
Submit a software upgrade proposal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Upgrade proposal description | |
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
height | Yes | Block height to perform upgrade | |
info | No | Upgrade info (usually JSON with binaries) | |
initialDeposit | No | Initial deposit amount in uosmo | 10000000 |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
name | Yes | Upgrade name | |
title | Yes | Upgrade proposal title |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Upgrade proposal description",
"type": "string"
},
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"height": {
"description": "Block height to perform upgrade",
"type": "string"
},
"info": {
"description": "Upgrade info (usually JSON with binaries)",
"type": "string"
},
"initialDeposit": {
"default": "10000000",
"description": "Initial deposit amount in uosmo",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"name": {
"description": "Upgrade name",
"type": "string"
},
"title": {
"description": "Upgrade proposal title",
"type": "string"
}
},
"required": [
"mnemonic",
"title",
"description",
"name",
"height"
],
"type": "object"
}