beacon.validator.exit_queue_latest
model provides the estimated epoch and timestamp where a validator is expected to exit.
This model is derived from beacon.validator.balances_latest
and is updated approximately every 30 minutes.
Schema
Column Name | Type | Description |
---|---|---|
status | string | Current status of the validator. |
validator_index | integer | Unique index of the validator. |
pubkey | string | The validator’s BLS public key, uniquely identifying them. 48-bytes, hex encoded with 0x prefix, case insensitive. |
exit_epoch | integer | Epoch when validator exited. |
exit_timestamp | timestamp | Timestamp when validator exited. |
hours_to_exit | numeric | Estimated time in hours to exit. |
withdrawable_epoch | integer | Epoch when validator can withdraw. |
withdrawable_timestamp | timestamp | Timestamp when validator can withdraw. |
hours_to_withdraw | numeric | Estimated time in hours to withdraw. |
balance | numeric | Balance of the validator. |
effective_balance | numeric | Effective balance of the validator. |
withdrawal_credentials | string | Withdrawal credentials is a 32-byte field associated with every validator, initially set during deposit, for verifying the destination of valid withdrawals. |
execution_optimistic | boolean | Execution optimistic. |
finalized | boolean | This will be false given that we are fetching the latest state. |