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

> Fuel 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 Fuel blockchain, including block headers, consensus data, and transaction information.

## Column Descriptions

| Column Name                              | Data Type | Description                  |
| ---------------------------------------- | --------- | ---------------------------- |
| **block\_time**                          | bigint    | Block creation timestamp     |
| **block\_date**                          | date      | Block creation date          |
| **height**                               | bigint    | Block height/number          |
| **time**                                 | bigint    | Unix timestamp               |
| **transactions\_count**                  | bigint    | Number of transactions       |
| **transactions\_root**                   | binary    | Merkle root of transactions  |
| **application\_hash**                    | binary    | Application state hash       |
| **consensus\_parameters\_version**       | bigint    | Consensus parameters version |
| **da\_height**                           | bigint    | Data availability height     |
| **event\_inbox\_root**                   | binary    | Event inbox Merkle root      |
| **id**                                   | binary    | Block identifier             |
| **message\_outbox\_root**                | binary    | Message outbox Merkle root   |
| **message\_receipt\_count**              | bigint    | Number of message receipts   |
| **prev\_root**                           | binary    | Previous block root          |
| **state\_transition\_bytecode\_version** | bigint    | State transition version     |
| **version**                              | string    | Block version                |
| **consensus\_type**                      | string    | Consensus mechanism type     |
| **poa\_consensus\_data\_signature**      | binary    | PoA consensus signature      |
| **producer**                             | binary    | Block producer address       |
| **\_updated\_at**                        | timestamp | Last update timestamp        |
| **\_ingested\_at**                       | timestamp | Ingestion timestamp          |

## Table Sample

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