beacon.validator.entry_queue_latest
model provides the estimated epoch and timestamp where a pending deposit from Beacon Chain is expected to be processed.
It provides the estimated entry timestamp and hours to entry for a given validator. The estimated entry timestamp and epoch is based on the current churn rate, beacon chain deposit index of the validator and the amount of ETH in front of the validator. The outputs of the model is expected to vary around +/- 1-2 epochs.
This model is derived from beacon.validator.balances_latest
and beacon.raw.pending_deposits
, and is updated approximately every 30 minutes.
Schema
Column Name | Type | Description |
---|---|---|
epoch_number | bigint | Epoch number of the state where the pending deposits to beacon chain is fetched. |
slot_number | bigint | Slot number of the state where the pending deposits to beacon chain is fetched. |
slot_timestamp | timestamp | Slot timestamp of the state where the pending deposits to beacon chain is fetched. |
deposit_index | bigint | Deposit index of the entry. This is based on the order of the deposits from Execution Layer to Beacon Chain. |
deposit_slot | bigint | The slot number where the deposit is made into beacon chain. For slot=0 (genesis slot), this corresponds to partial deposits with the validator exiting beacon chain. |
pubkey | string | The validator’s BLS public key. |
validator_index | bigint | (Nullable) Unique index of the validator. Once a validator has been processed and added to the beacon state’s validators, the validator’s validator_index is defined by the index into the registry at which the ValidatorRecord contains the pubkey specified in the validator’s deposit. |
status | string | (Nullable) Current status of the validator. Once a validator has been processed and added to the beacon state’s validators, the validator’s status is defined by the status of the ValidatorRecord in the beacon state. |
exit_epoch | bigint | Epoch when validator exited. This is 18446744073709551615 if the validator is still active in the network and has not exited yet. |
eth_pending | numeric | Amount of ETH that is pending for deposits for the validator at the current epoch. |
eth_in_queue | numeric | The total amount of ETH in front of the validator waiting to be processed for deposits. |
epoch_to_entry | bigint | Estimated number of epochs to entry for deposits base on the current churn rate. |
est_entry_epoch | bigint | Estimated entry epoch number where the deposit is expected to be processed. |
est_entry_timestamp | timestamp | Estimated entry timestamp where the deposit is expected to be processed. |
_pending_deposit_updated_at | timestamp | Timestamp of the entry update for pending deposits. |
_balances_latest_updated_at | timestamp | Timestamp of the entry update for beacon state balances. |