Skip to main content

[Block] klay_getBlockWithConsensusInfoByHash

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

JSONRPC: klay_getBlockWithConsensusInfoByHash

Request

Body

    params 32-byte DATA[]required

    Hash of a block.

Responses

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

Schema

    error

    object

    code int64required

    A Number that indicates the error type that occurred. This MUST be an integer.

    codemessagedescription
    -32700Parse errorinvalid JSON was received by the server. An error occurred on the server while parsing the JSON text.
    -32602Invalid paramsInvalid method parameter(s).
    message string

    A String providing a short description of the error. The message SHOULD be limited to a concise single sentence.

    data string

    A Primitive or Structured value that contains additional information about the error. This may be omitted. The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).

    result

    object

    blockScore hexrequired

    Former difficulty. Always 1 in the BFT consensus engine

    totalBlockScore hexrequired

    Integer of the total blockScore of the chain until this block.

    committee string[]required

    Array of addresses of committee members of this block. The committee is a subset of validators participated in the consensus protocol for this block.

    committers string[]required

    Array of addresses of committer members of this block.

    gasUsed hexrequired

    The total used gas by all transactions in this block.

    hash 32-byte DATArequired

    Hash of the block. null when it is pending block.

    number hexrequired

    The block number. null when it is pending block.

    parentHash 32-byte DATArequired

    Hash of the parent block.

    proposer 20-byte DATArequired

    Address of the proposer.

    receiptsRoot 32-byte DATArequired

    The root of the receipts trie of the block.

    sigHash stringrequired

    signature hash of block

    size hexrequired

    Integer the size of this block in bytes.

    stateRoot 32-byte DATArequired

    The root of the final state trie of the block.

    timestamp hexrequired

    The Unix timestamp for when the block was collated.

    timestampFoS hexrequired

    The fraction of a second of the timestamp for when the block was collated.

    transactions object[]required

    Array of transaction objects.

    transactionsRoot 32-byte DATArequired

    The root of the transaction trie of the block.

    baseFeePerGas hexrequired

    The base fee per gas. It has a meaningful value when EthTxTypeCompatible and Magma hardforks are activated.

Loading...