Blocks
The arbitrum.blocks table provides indexed views of all blocks validated on Arbitrum.
Columns
| Name | Type | Description |
|---|---|---|
| block_hash | text |
The hash of all the block's contents. |
| block_number | integer |
The block's number |
| gas_limit | numeric |
The maximum amount of gas that can be used in the block (in gas units). |
| gas_used | numeric |
The amount of gas used in the block (in gas units). |
| parent_hash | text |
The hash of the block's parent block. |
| size_bytes | numeric |
The block's size (in bytes). |
| timestamp | timestamp |
The block's timestamp (in ISO-8601 format). |
| transaction_count | integer |
The number of transactions in the block. |
| validator_address | text |
The address of the validator who validated the block. |
| __confirmed | boolean |
Flag indicating whether the block has been confirmed. |
Indexes
| Index |
|---|
| block_number |
| block_hash |
| __confirmed WHERE __confirmed = false |
| timestamp |
| validator_address, block_number |
| validator_address, timestamp |
Got questions? Join our Discord
Discord is the primary home of the Transpose developer community. Join us to ask questions, share your work, and get help.