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

> Beacon chain withdrawals — validator ETH withdrawals with amounts and recipient addresses.

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.withdrawals` table stores data about withdrawals initiated by validators on 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 withdrawal was proposed.                 |
| **block\_slot**      | long      | Slot number within the epoch when the block containing the withdrawal was proposed. |
| **block\_time**      | timestamp | Timestamp when the block containing the withdrawal was included in the chain.       |
| **block\_date**      | date      | Date corresponding to the block\_time.                                              |
| **address**          | binary    | Execution layer (ETH1) address receiving the withdrawn ETH.                         |
| **amount**           | long      | Amount of ETH withdrawn, specified in Gwei.                                         |
| **index**            | long      | Unique identifier for the withdrawal operation.                                     |
| **validator\_index** | long      | Index of the validator initiating the withdrawal.                                   |

## Table Sample

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