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