post https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b/
Solana getBlock
method
getBlock
methodThe Solana getBlock
method returns complete information about a block for a given block height.
This method provides detailed information about the block, including its parent block, transactions, and the state of the ledger after processing the block. It is useful for retrieving the state of the blockchain at a specific block height.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
block
— the height of the block to retrieve information for.
Response
blockhash
— the hash of the block.parentSlot
— the slot of the block's parent.previousBlockhash
— the hash of the block's parent.rewards
— an array of reward objects that were awarded when the block was processed.transactions
— an array of transaction objects that were processed in the block.
Use case
A practical use case for getBlock
is to retrieve detailed information about a specific block. This can be useful for block explorers, wallets, or other applications that need to display or make use of this information.
Try the getBlock
RPC method yourself
getBlock
RPC method yourself