> ## 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.operators

> Beacon chain operators — validator groupings by known staking entity or operator.

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.operators` table is indexed from Lido. Stores information about staking operators on the Beacon Chain, including their public keys and associated staking modules or services.

## Column Descriptions

| **Column**         | **Type**  | **Description**                                                          |
| ------------------ | --------- | ------------------------------------------------------------------------ |
| **index**          | bigint    | Unique identifier for the operator.                                      |
| **operator\_name** | varchar   | Name of the staking operator.                                            |
| **module\_id**     | bigint    | Identifier linking the operator to a specific staking module or service. |
| **public\_key**    | varbinary | Operator's public key used for cryptographic operations.                 |
| **updated\_at**    | timestamp | Last time the record was updated.                                        |
| **ingested\_at**   | timestamp | Time when the record was ingested.                                       |

## Table Sample

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