Skip to main content

erigon_getBlockByTimestamp RPC Method

Fetches the block information by a specific timestamp

Updated on
Jun 4, 2024

erigon_getBlockByTimestamp RPC Method

Parameters

blockNumber
string
REQUIRED
The timestamp of the block or block number in hexadecimal format
transaction_detail_flag
boolean
REQUIRED
The method returns the full transaction objects when this value is true otherwise, it returns only the hashes of the transactions

Returns

result
object
A block object, or null when no block was found. The block object contains the following fields:
baseFeePerGas
string
(Optional) A string of the base fee encoded in hexadecimal format. Please note that this response field will not be included in a block requested before the EIP-1559 upgrade
difficulty
string
The integer of the difficulty for this block encoded as a hexadecimal
extraData
string
The “extra data” field of this block
gasLimit
string
The maximum gas allowed in this block encoded as a hexadecimal
gasUsed
string
The total used gas by all transactions in this block encoded as a hexadecimal
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
miner
string
The address of the beneficiary to whom the mining rewards were given
mixHash
string
A string of a 256-bit hash encoded as a hexadecimal
nonce
string
The hash of the generated proof-of-work. null if pending
number
string
The block number of the requested block encoded as hexadecimal. null if pending
parentHash
string
The hash of the parent block
receiptsRoot
string
The root of the receipts trie of the block
sha3Uncles
string
The SHA3 of the uncles data in the block
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
totalDifficulty
string
The integer of the total difficulty of the chain until this block encoded as a hexadecimal
transactions
array
An array of transaction objects - please see eth_getTransactionByHash for exact shape
transactionsRoot
string
The root of the transaction trie of the block
uncles
array
An array of uncle hashes
Request
1
curl --location 'https://docs-demo.xdai.quiknode.pro/' \
2
--header 'Content-Type: application/json' \
3
--data '{
4
"method": "erigon_getBlockByTimestamp",
5
"params": [
6
"0x55ba4224",
7
true
8
],
9
"id": 1,
10
"jsonrpc": "2.0"
11
}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free