eth_getBlockByNumber
Summary: Returns information about a block by number.
Parameters
Block number or tag
hex encoded unsigned integer
earliest
: The lowest numbered block the client has available; finalized
: The most recent crypto-economically secure block, cannot be re-orged outside of manual intervention driven by community coordination; safe
: The most recent block that is safe from re-orgs under honest majority and certain synchronicity assumptions; latest
: The most recent block in the canonical chain observed by the client, this block may be re-orged out of the canonical chain even under healthy/normal conditions; pending
: A sample next block built by the client on top of latest
and containing the set of transactions usually taken from local mempool. Before the merge transition is finalized, any call querying for finalized
or safe
block MUST be responded to with -39001: Unknown block
error
hydrated
Returns
Not Found (null)
Block object
32 byte hex value
32 byte hex value
32 byte hex value
hex encoded address
32 byte hex value
32 byte hex value
32 byte hex value
256 hex encoded bytes
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded bytes
32 byte hex value
8 hex encoded bytes
hex encoded unsigned integer
32 byte hex value
hex encoded unsigned integer
hex encoded unsigned integer
32 byte hex value
hex encoded unsigned integer
Transaction hashes
32 byte hex value
Full transactions
Transaction information
Contextual information
Signed 4844 Transaction
EIP-4844 transaction.
hex encoded byte
hex encoded unsigned integer
hex encoded address
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded bytes
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded unsigned integer
Access list
Access list entry
hex encoded address
32 byte hex value
List of versioned blob hashes associated with the transaction's EIP-4844 data blobs.
32 byte hex value
hex encoded unsigned integer
EIP-4844 transaction signature properties.
Signed 1559 Transaction
EIP-1559 transaction.
type
hex encoded unsigned integer
to address
Contract Creation (null)
hex encoded address
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded bytes
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded unsigned integer
Access list
Access list entry
hex encoded address
32 byte hex value
hex encoded unsigned integer
EIP-1559 transaction signature properties.
Signed 2930 Transaction
EIP-2930 transaction.
type
hex encoded unsigned integer
to address
Contract Creation (null)
hex encoded address
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded bytes
hex encoded unsigned integer
Access list
Access list entry
hex encoded address
32 byte hex value
hex encoded unsigned integer
EIP-2930 transaction signature properties.
Signed Legacy Transaction
Legacy transaction.
type
hex encoded unsigned integer
to address
Contract Creation (null)
hex encoded address
hex encoded unsigned integer
hex encoded unsigned integer
hex encoded bytes
hex encoded unsigned integer
hex encoded unsigned integer
Legacy transaction signature properties.
Withdrawals
Validator withdrawal
hex encoded 64 bit unsigned integer
hex encoded 64 bit unsigned integer
hex encoded address
hex encoded 256 bit unsigned integer
Uncles
32 byte hex value
await window.ethereum.request({
"method": "eth_getBlockByNumber",
"params": [],
});