get_validator_status
Retrieve detailed status of an Ethereum validator using its public key, including activation, balance, and operational state, to monitor staking and network participation.
Instructions
Get status for a specific Ethereum validator by public key.
Args:
pubkey (str): The public key of the validator (48-byte hex string starting with '0x')
Returns:
A string containing:
- Validator public key
- Current status (e.g., active_online, pending, exited)
- Effective balance in ETH
- Activation epoch (if applicable)
- Exit epoch (if applicable)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pubkey | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pubkey": {
"title": "Pubkey",
"type": "string"
}
},
"required": [
"pubkey"
],
"title": "get_validator_statusArguments",
"type": "object"
}