eth.eigenlayer.eigenpod_validators

  • This is the validator list, filtered to just the validators that have withdrawal_credentials that match one of the deployed EigenPods.

It is a view defined as:

SELECT * FROM goerli.beacon.validators val
WHERE val.withdrawal_credentials IN (
  select withdrawal_credential from eth.eigenlayer.eigenpods
)

See goerli.beacon.validators for the schema and column definitions.

Last updated