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

# Blocks

> Echelon blockchain blocks data

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

This table contains data about blocks in the Echelon blockchain, including block headers, consensus data, and transaction information.

## Column Descriptions

| Column name           | Data Type                   | Description                                                  |
| --------------------- | --------------------------- | ------------------------------------------------------------ |
| **block\_date**       | date                        | The date of the block.                                       |
| **block\_height**     | bigint                      | The height of the block, a unique identifier for each block. |
| **block\_timestamp**  | timestamp(3) with time zone | Timestamp when the block was validated.                      |
| **chain\_id**         | varchar                     | The ID of the chain where the block belongs.                 |
| **proposer\_address** | varchar                     | The address of the validator proposing the block.            |
| **validators\_hash**  | varchar                     | The hash of the validators set for the block.                |
| **updated\_at**       | timestamp(3) with time zone | Timestamp of when the record was last updated.               |
| **ingested\_at**      | timestamp(3) with time zone | Timestamp of when the record was ingested into Dune.         |

## Table Sample

<TableSample tableSchema="echelon" tableName="blocks" />
