getChainValidators
Retrieve a list of validators for a specific blockchain chain to assist users in delegating stakes. Designed for use with the Adamik MCP Server, which supports multi-chain interactions.
Instructions
Gets the list of known validators for a given chain. This is only useful when asking the user to select a validator to delegate to
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "string"
}
},
"required": [
"chainId"
],
"type": "object"
}