Index

The beacon.validator.index table gives an index of Beacon Chain validator index, pubkey, withdrawal credentials and withdrawal address of each validator.

This table updates daily with newly activated validators.

Sample Query

Finding the total number of validators that have withdrawal address to Lido Withdrawal Vaults

select 
    withdrawal_address, 
    count(distinct validator_index) as validators
from beacon.validator.index
where withdrawal_address = '0xb9d7934878b5fb9610b3fe8a5e441e8fad7e293f' -- Lido Withdrawal Vault
group by 1 

Table Columns

Last updated