get-validator-delegations
Retrieve all delegations for a specific validator on the Osmosis blockchain, with customizable limits for detailed analysis and monitoring.
Instructions
Returns all delegations to a specific validator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of delegations to return (default: 50) | |
validatorAddress | Yes | The validator address |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of delegations to return (default: 50)",
"maximum": 200,
"minimum": 1,
"type": "number"
},
"validatorAddress": {
"description": "The validator address",
"type": "string"
}
},
"required": [
"validatorAddress"
],
"type": "object"
}