Skip to main content

Table description

The solana.blocks table contains the block data within Solana’s blockchain. It can be used to identify block activity and transaction changes over time.

Table Schema

ColumnTypeDescription
slotBIGINTThe slot number of the block, used as the primary block identifier on Solana
heightBIGINTThe block height (number of blocks since genesis)
timeTIMESTAMPThe timestamp when the block was produced
dateDATEThe date the block was produced
hashVARCHARThe unique hash of the block
total_transactionsINTEGERTotal number of transactions included in the block (vote + non-vote)
successful_transactionsINTEGERNumber of transactions that completed successfully
failed_transactionsINTEGERNumber of transactions that failed
total_vote_transactionsINTEGERTotal number of validator vote transactions in the block
total_non_vote_transactionsINTEGERTotal number of non-vote (user) transactions in the block
successful_vote_transactionsINTEGERNumber of vote transactions that succeeded
successful_non_vote_transactionsINTEGERNumber of non-vote transactions that succeeded
failed_vote_transactionsINTEGERNumber of vote transactions that failed
failed_non_vote_transactionsINTEGERNumber of non-vote transactions that failed
parent_slotBIGINTThe slot number of the parent block
previous_block_hashVARCHARThe hash of the parent block
num_reward_partitionsBIGINTThe number of reward partitions in this block

Table Sample