prepare-redelegate
Generate a transaction to redelegate tokens from one validator to another on the Osmosis blockchain, specifying delegator, source, destination, and amount.
Instructions
Prepares a transaction to redelegate tokens between validators
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of uosmo to redelegate | |
delegatorAddress | Yes | The delegator's address | |
validatorDstAddress | Yes | The destination validator address | |
validatorSrcAddress | Yes | The source validator address |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount of uosmo to redelegate",
"type": "string"
},
"delegatorAddress": {
"description": "The delegator's address",
"type": "string"
},
"validatorDstAddress": {
"description": "The destination validator address",
"type": "string"
},
"validatorSrcAddress": {
"description": "The source validator address",
"type": "string"
}
},
"required": [
"delegatorAddress",
"validatorSrcAddress",
"validatorDstAddress",
"amount"
],
"type": "object"
}