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

# staking_ethereum.entities

> Ethereum staking entities — known operators, institutional stakers, and liquid staking protocols.

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>
  </>;

The `staking_ethereum.entities` table provides entity identification mapping for staking depositor addresses — linking wallet addresses to known staking operators and protocols.

## Table Schema

| Column                   | Type        | Description                                    |
| ------------------------ | ----------- | ---------------------------------------------- |
| `depositor_address`      | `VARBINARY` | Address of identified depositor entity         |
| `tx_from`                | `VARBINARY` | Address that initiated the staking deposit     |
| `pubkey`                 | `VARBINARY` | Public key of identified validator             |
| `withdrawal_credentials` | `VARBINARY` | Withdrawal credentials of identified validator |
| `entity`                 | `VARCHAR`   | Identified entity name (e.g., Lido, Coinbase)  |
| `entity_unique_name`     | `VARCHAR`   | Unique name of identified entity               |
| `category`               | `VARCHAR`   | Category of entity (e.g., Liquid Staking, CEX) |
| `sub_entity`             | `VARCHAR`   | Sub-entity name (e.g., specific operator)      |
| `sub_entity_unique_name` | `VARCHAR`   | Unique name of sub-entity                      |
| `sub_entity_category`    | `VARCHAR`   | Category of sub-entity                         |

## Table sample

<TableSample tableSchema="staking_ethereum" tableName="entities" />
