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

> Ethereum beacon chain deposit events — validator activations with amounts, withdrawal credentials, and entity attribution.

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.deposits` table contains all ETH staking deposits to the beacon chain with entity attribution.

## Table Schema

| Column                        | Type        | Description                            |
| ----------------------------- | ----------- | -------------------------------------- |
| `block_time`                  | `TIMESTAMP` | Block time of deposit transaction      |
| `block_number`                | `BIGINT`    | Block number                           |
| `amount_staked`               | `DOUBLE`    | Amount of ETH staked                   |
| `depositor_address`           | `VARBINARY` | Address of the depositor               |
| `entity`                      | `VARCHAR`   | Name of depositor entity if identified |
| `entity_unique_name`          | `VARCHAR`   | Unique name of identified entity       |
| `entity_category`             | `VARCHAR`   | Category of identified entity          |
| `sub_entity`                  | `VARCHAR`   | Sub-entity name if identified          |
| `sub_entity_unique_name`      | `VARCHAR`   | Unique name of sub-entity              |
| `sub_entity_category`         | `VARCHAR`   | Category of sub-entity                 |
| `tx_hash`                     | `VARBINARY` | Transaction hash                       |
| `tx_from`                     | `VARBINARY` | Address that executed the transaction  |
| `deposit_index`               | `BIGINT`    | Deposit index                          |
| `pubkey`                      | `VARBINARY` | Validator public key                   |
| `signature`                   | `VARBINARY` | Deposit signature                      |
| `withdrawal_address`          | `VARBINARY` | Defined withdrawal address             |
| `withdrawal_credentials_type` | `VARBINARY` | Withdrawal credentials type            |
| `withdrawal_credentials`      | `VARBINARY` | Withdrawal credentials                 |
| `evt_index`                   | `INTEGER`   | Event index                            |

## Table sample

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