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

> Beacon chain blob data — EIP-4844 blob sidecar data for rollup data availability.

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.blobs` table stores blob sidecar data that is exchanged between validators and users 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 blob sidecar was proposed.                           |
| **block\_slot**                       | long      | Slot number within the epoch when the block containing the blob sidecar was proposed.           |
| **block\_time**                       | timestamp | Timestamp when the block containing the blob sidecar was included in the chain.                 |
| **block\_date**                       | date      | Date corresponding to the block\_time.                                                          |
| **index**                             | long      | Index of the blob sidecar within the block.                                                     |
| **proposer\_index**                   | long      | Validator index of the block proposer.                                                          |
| **kzg\_commitment**                   | binary    | KZG commitment for the blob, ensuring data availability and integrity.                          |
| **kzg\_commitment\_inclusion\_proof** | binary    | Proof that the KZG commitment is included in the block, verifying its validity.                 |
| **kzg\_proof**                        | binary    | KZG proof associated with the blob, used for data verification.                                 |
| **body\_root**                        | binary    | Root hash of the block body, representing its contents.                                         |
| **parent\_root**                      | binary    | Root hash of the parent block, linking to the previous block in the chain.                      |
| **state\_root**                       | binary    | Root hash of the state after processing the block, reflecting the system's state.               |
| **signature**                         | binary    | BLS signature of the block proposer, ensuring authenticity.                                     |
| **blob**                              | binary    | The actual blob data associated with the sidecar, containing arbitrary data stored temporarily. |

## Table Sample

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