Blocks
A block number is an ordinal number that indicates the position of a block within the sequence of accepted blocks.
A block hash is a unique identifier that helps query and reference the block.
Blocks are units of information stored on a blockchain, containing grouped transactions that are verified and signed by validators. Each block has these components to ensure the integrity and order of transactions.
Table Columns
Unique Key: Number
number
The sequential number of the block in the blockchain.
timestamp
The timestamp when the block was created.
hash
The hash of the block.
parent_hash
The hash of the parent block.
proposer_address
The address of the proposer who created the block.
transaction_count
The number of transactions included in the block.
consensus_hash
The hash of the block's consensus state.
app_hash
The hash of the application state.
block_id
The unique identifier for the block.
chain_id
The identifier of the blockchain (e.g., cosmoshub-4
).
data_hash
The hash of the block's data.
evidence
JSON object containing any evidence associated with the block.
evidence_hash
The hash of the evidence associated with the block.
last_block_id
The unique identifier of the previous block.
last_commit_hash
The hash of the last commit.
last_results_hash
The hash of the last results.
next_validators_hash
The hash of the next set of validators.
validators_hash
The hash of the current set of validators.
version
The version of the blockchain software.
last_commit
Array of validator signature and address from the last commit.
_created_at
The timestamp when the entry was created.
_updated_at
The timestamp when the entry was updated.
Last updated