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

> Beacon chain deposits — ETH staking deposits with validator pubkeys and withdrawal credentials.

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.deposits` table stores deposit data for validators joining the Beacon network. This table is partitioned by block\_date.

## Column Descriptions

| **Column**                  | **Type**  | **Description**                                                                               |
| --------------------------- | --------- | --------------------------------------------------------------------------------------------- |
| **block\_epoch**            | long      | Epoch number when the block containing the deposit was proposed.                              |
| **block\_slot**             | long      | Slot number within the epoch when the block containing the deposit was proposed.              |
| **block\_time**             | timestamp | Timestamp when the block containing the deposit was included in the chain.                    |
| **block\_date**             | date      | Date corresponding to the block\_time.                                                        |
| **amount**                  | long      | Amount of ETH deposited, specified in Gwei.                                                   |
| **pubkey**                  | binary    | BLS public key of the validator making the deposit.                                           |
| **signature**               | binary    | BLS signature verifying the deposit data.                                                     |
| **withdrawal\_credentials** | binary    | Credentials specifying the withdrawal address or conditions.                                  |
| **proof**                   | binary    | Merkle proof demonstrating the inclusion of the deposit in the Ethereum 1.0 deposit contract. |

## Table Sample

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