Table Details
The
hyperliquid.raw.blocks table contains block level metadata, including block height, hash, timestamp, and proposer.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Block level metadata for Hyperliquid
| Property | Value |
|---|---|
| Table Name | hyperliquid.raw.blocks |
| Table Status | Production-Ready |
| Unique Key | timestamp, height |
| Clustering Key(s) | to_date("timestamp") |
| Search Optimization | hash, height, proposer |
hyperliquid.raw.blocks table contains block level metadata, including block height, hash, timestamp, and proposer.
| Column Name | Data Type | Description |
|---|---|---|
| timestamp | TIMESTAMP_NTZ(9) | The UTC timestamp of the block |
| hash | VARCHAR(16777216) | Block hash |
| height | NUMBER(38,0) | Block height |
| num_transactions | NUMBER(38,0) | Total number of transactions in the block |
| proposer | VARCHAR(16777216) | Address for the user that proposed the block. (Generated the block) |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |
Was this page helpful?