> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# beacon.validators

> Beacon chain validator registry — pubkey, status, balance, and activation/exit epochs.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

The `beacon.validators` table stores data about validators on the Beacon network. This table is partitioned by block\_date.

## Column Descriptions

| **Column**                         | **Type**  | **Description**                                                                                          |
| ---------------------------------- | --------- | -------------------------------------------------------------------------------------------------------- |
| **index**                          | bigint    | Unique identifier assigned to the validator upon registration.                                           |
| **slashed**                        | boolean   | Indicates whether the validator has been slashed for misbehavior (`true` if slashed, `false` otherwise). |
| **public\_key**                    | varbinary | Validator's BLS public key used for signing messages.                                                    |
| **activation\_eligibility\_epoch** | bigint    | Epoch when the validator became eligible for activation after meeting the minimum balance requirement.   |
| **activation\_epoch**              | bigint    | Epoch when the validator was activated and began participating in the consensus process.                 |
| **exit\_epoch**                    | bigint    | Epoch when the validator exited the active validator set.                                                |
| **withdrawable\_epoch**            | bigint    | Epoch when the validator's funds become withdrawable after exiting.                                      |
| **effective\_balance**             | bigint    | Validator's balance used for reward calculations, capped at a maximum value, measured in Gwei.           |
| **withdrawal\_credentials**        | varbinary | Credentials used to specify the destination for withdrawn funds.                                         |
| **updated\_at**                    | timestamp | Last time the record was updated                                                                         |
| **ingested\_at**                   | timestamp | Time when the record was ingested                                                                        |

## Table Sample

<TableSample tableSchema="beacon" tableName="validators" />
