> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Blocks

### Table Details

| Property          | Value                  |
| ----------------- | ---------------------- |
| Table Name        | `starknet.raw.blocks`  |
| Table Status      | Production-Ready       |
| Unique Key        | `number`               |
| Clustering Key(s) | `to_date("timestamp")` |

### Table Columns

| Column Name               | Data Type         | Description                                                                          |
| ------------------------- | ----------------- | ------------------------------------------------------------------------------------ |
| number                    | NUMBER(38,0)      | The length of the chain, in blocks.                                                  |
| timestamp                 | TIMESTAMP\_NTZ(9) | The unix timestamp for when the block was collated.                                  |
| hash                      | VARCHAR(16777216) | Unique identifier of a block.                                                        |
| parent\_hash              | VARCHAR(16777216) | Unique identifier of the block preceding this block, also known as the parent block. |
| new\_root                 | VARCHAR(16777216) | The new state root after applying this block's transactions.                         |
| sequencer\_address        | VARCHAR(16777216) | The address of the sequencer that produced this block.                               |
| status                    | VARCHAR(16777216) | The status of the block                                                              |
| starknet\_version         | VARCHAR(16777216) | The version of the Starknet protocol used for this block.                            |
| l1\_da\_mode              | VARCHAR(16777216) | The data availability mode for L1 (e.g., 'BLOB', 'CALLDATA').                        |
| l1\_data\_gas\_price\_fri | NUMBER(38,0)      | The L1 data gas price in FRI (Field Representation Integer) units.                   |
| l1\_gas\_price\_fri       | NUMBER(38,0)      | The L1 gas price, denominated in fri                                                 |
| l2\_gas\_price\_fri       | NUMBER(38,0)      | The L2 gas price, denominated in fri                                                 |
| l1\_data\_gas\_price\_wei | NUMBER(38,0)      | The L1 data gas price, denominated in wei                                            |
| l1\_gas\_price\_wei       | NUMBER(38,0)      | The L1 gas price, denominated in wei                                                 |
| l2\_gas\_price\_wei       | NUMBER(38,0)      | The L2 gas price, denominated in wei                                                 |
| transaction\_count        | NUMBER(38,0)      | Number of transactions included in this block.                                       |
| \_created\_at             | TIMESTAMP\_NTZ(9) | Timestamp when the record was created.                                               |
| \_updated\_at             | TIMESTAMP\_NTZ(9) | Timestamp when the record was last updated.                                          |

### Related Docs

* [EVM Raw Blocks](/historical-data/supported-blockchains/evm/core-schemas/raw/blocks)
