Skip to main content

klay_getBlockWithConsensusInfoByHash RPC Method

Returns a block with consensus information that matches the given block hash.

Updated on
Aug 7, 2024

klay_getBlockWithConsensusInfoByHash RPC Method

Parameters

blockHash
string
REQUIRED
The block hash

Returns

object
object
A block object, or null when no block was found:
blockScore
string
The score of the block, represented in hexadecimal format
committee
array
An array of all committee
committers
array
An array of all committers
extraData
string
The “extra data” field of this block
gasUsed
string
The total used gas by all transactions in this block encoded as a hexadecimal
governanceData
string
Data related to governance, represented as a hexadecimal string
hash
string
The block hash of the requested block. null if pending
logsBloom
string
The bloom filter for the logs of the block. null if pending
number
string
The block number of the requested block encoded as a hexadecimal. null if pending
originProposer
string
The origin of the proposer
parentHash
string
The hash of the parent block
proposer
string
The proposer address
receiptsRoot
string
The root of the receipts trie of the block
reward
string
The address of the account that received the block reward
sigHash
string
The sig hash
size
string
The size of this block in bytes as an Integer value encoded as hexadecimal
stateRoot
string
The root of the final state trie of the block
timestamp
string
The unix timestamp for when the block was collated
timestampFoS
string
An additional timestamp field, represented in hexadecimal format
totalBlockScore
string
The total score of the blockchain up to and including this block, represented in hexadecimal format
transactions
array
An array of transaction objects
transactionsRoot
string
The root of the transaction trie of the block
voteData
string
The data related to votes, represented as a hexadecimal string
Request
1
curl https://docs-demo.kaia-kairos.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{
5
"method": "klay_getBlockWithConsensusInfoByHash",
6
"id": 1,
7
"jsonrpc": "2.0",
8
"params": [
9
"0xcaad6b9b3fcf26c23159c169fd6ad289045cbc8f28c110acc52e9d18449b8745"
10
]
11
}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free