Block

This table displays block_ids, rewards associated with a block, and the time a block was minted and confirmed. In the Algorand ecosystem a block is also known as a round.

Table Schema

FieldTypeDescription

BLOCK_ID

number

The block

BLOCK_TIMESTAMP

timestamp

Timestamp of block minting(without a timezone)

REWARDSLEVEL

number

How many rewards, in MicroAlgos, have been distributed to each RewardUnit of MicroAlgos since genesis. Link: https://algorand.github.io/java-algorand-sdk/com/algorand/algosdk/v2/client/model/BlockRewards.html

NETWORK

text

Signifying whether the block is from mainnet or testnet

GENISIS_HASH

text

ID to which this block belongs

PREV_BLOCK_HASH

number

ID to which the block before this belongs

TXN_ROOT

boolean

TransactionsRoot authenticates the set of transactions appearing in the block. More specifically, it's the root of a merkle tree whose leaves are the block's Txids, in lexicographic order. For the empty block, it's 0. Note that the TxnRoot does not authenticate the signatures on the transactions, only the transactions themselves. Two blocks with the same transactions but in a different order and with different signatures will have the same TxnRoot.

HEADER

array

Block details, see rules below- for more message details https://developer.algorand.org/docs/rest-apis/indexer/#blockrewards

Last updated