본문으로 건너뛰기

[Block] kaia_getHeaderByHash

Returns information about a header by hash. This API works only on RPC call, not on JavaScript console.

NOTE: This API is supported from Klaytn v1.7.0.

JSONRPC: kaia_getHeaderByHash

Request

Body

    params 32-byte DATA[]required

    Hash of a block.

Responses

Returns information about a header by 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

    The block header object.

    number hexnullable

    The block number. null when its pending block.

    hash 32-byte DATAnullablerequired

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

    parentHash 32-byte DATArequired

    Hash of the parent block.

    logsBloom 256-byte DATAnullable

    The bloom filter for the logs of the block. null when it is pending block.

    transactionsRoot 32-byte DATArequired

    The root of the transaction trie of the block

    stateRoot 32-byte DATArequired

    The root of the final state trie of the block.

    receiptsRoot 32-byte DATArequired

    The root of the receipts trie of the block.

    reward 20-byte DATArequired

    The address of the beneficiary to whom the block rewards were given.

    blockScore hexrequired

    Former difficulty. Always 1 in the BFT consensus engine

    extraData DATArequired

    The "extra data" field of this block.

    gasUsed hexrequired

    The total used gas by all transactions in this 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.

    governanceData DATArequired

    RLP encoded governance configuration

    voteData DATArequired

    RLP encoded governance vote of the proposer

    baseFeePerGas hexrequired

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

Loading...