Blocks info#
Supplies comprehensive details about blockchain blocks, including metadata, transactions, and receipts.
eth_blockNumber: Returns the latest block number.
eth_getBlockByHash: Retrieves block details using its unique hash.
eth_getBlockByHash#full: Fetches a full block, including all transaction details.
eth_getBlockByNumber: Provides block data based on its position in the chain.
eth_getBlockByNumber#full: Returns an entire block, complete with transaction data.
eth_newBlockFilter: Creates a filter to track new blocks in real-time.
eth_getBlockReceipts: Retrieves transaction receipts associated with a block.
eth_getBlockTransactionCountByHash: Determines the number of transactions in a block using its hash.
eth_getBlockTransactionCountByNumber: Returns the count of transactions in a block identified by its number.