set-withdrawal-address
Assign a withdrawal address for delegation rewards on Osmosis. Specify a mnemonic and desired address to configure where rewards are sent.
Instructions
Set reward withdrawal address for delegation rewards
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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 | |
withdrawAddress | Yes | Address to set as withdrawal address |
Input Schema (JSON Schema)
{
"properties": {
"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"
},
"withdrawAddress": {
"description": "Address to set as withdrawal address",
"type": "string"
}
},
"required": [
"mnemonic",
"withdrawAddress"
],
"type": "object"
}