Table Description
Theberachain.blocks table contains information about blocks in the Berachain blockchain. Each block contains a collection of transactions that are hashed and added to the blockchain. Berachain uses CometBFT consensus through BeaconKit, providing single slot finality (SSF) for faster and more secure block confirmations.
Column Descriptions
| Column | Type | Description |
|---|---|---|
time | timestamp | The time when the block was mined |
number | bigint | The block number (height) |
gas_limit | decimal | Maximum gas allowed in the block |
gas_used | decimal | Total gas used by all transactions in the block |
difficulty | bigint | Mining difficulty of the block |
total_difficulty | decimal | Cumulative difficulty of the chain up to this block |
size | bigint | Size of the block in bytes |
base_fee_per_gas | bigint | Base fee per gas unit (EIP-1559) |
hash | varbinary | Hash of the block |
parent_hash | varbinary | Hash of the parent block |
miner | varbinary | Address of the miner/validator |
nonce | varbinary | Nonce used in mining the block |
date | date | Date of the block (UTC) |
blob_gas_used | bigint | Total blob gas used in the block (EIP-4844) |
excess_blob_gas | bigint | Excess blob gas for fee calculation (EIP-4844) |
parent_beacon_block_root | varbinary | Root of the parent beacon block |