delegate
Stake tokens with a chosen validator on MantraChain by specifying the amount, network, and validator address. Use the MCP server to manage blockchain assets efficiently.
Instructions
Delegate/Stake tokens to a validator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of tokens to delegate | |
denom | No | Optional denomination of the tokens, default is network's default denom | |
memo | No | Optional memo for the transaction | |
networkName | Yes | Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments | |
operatorAddress | Yes | Address of the validator to delegate to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount of tokens to delegate",
"type": "string"
},
"denom": {
"description": "Optional denomination of the tokens, default is network's default denom",
"type": "string"
},
"memo": {
"description": "Optional memo for the transaction",
"type": "string"
},
"networkName": {
"description": "Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments",
"type": "string"
},
"operatorAddress": {
"description": "Address of the validator to delegate to",
"type": "string"
}
},
"required": [
"operatorAddress",
"amount",
"networkName"
],
"type": "object"
}