prepare-undelegate
Generates a transaction to undelegate tokens from a validator on the Osmosis blockchain, requiring delegator address, validator address, and token amount.
Instructions
Prepares a transaction to undelegate tokens from a validator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of uosmo to undelegate | |
delegatorAddress | Yes | The delegator's address | |
validatorAddress | Yes | The validator address to undelegate from |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount of uosmo to undelegate",
"type": "string"
},
"delegatorAddress": {
"description": "The delegator's address",
"type": "string"
},
"validatorAddress": {
"description": "The validator address to undelegate from",
"type": "string"
}
},
"required": [
"delegatorAddress",
"validatorAddress",
"amount"
],
"type": "object"
}