eth_getBlockReceipts - HyperEVM
Example code for the eth_getBlockReceipts JSON RPC method. Сomplete guide on how to use eth_getBlockReceipts GetBlock JSON RPC in GetBlock Web3 documentation.
This method returns all transaction receipts for a given block.
Parameters
Parameter
Type
Required
Description
blockNumber
string
Yes
Block number (hex) or "latest".
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_getBlockReceipts",
"params": ["latest"],
"id": "getblock.io"
}'const axios = require('axios');
const response = await axios.post('https://go.getblock.io/<ACCESS-TOKEN>/', {
jsonrpc: '2.0',
method: 'eth_getBlockReceipts',
params: ['latest'],
id: 'getblock.io'
});
console.log('Receipts:', response.data.result);import requests
response = requests.post('https://go.getblock.io/<ACCESS-TOKEN>/', json={
'jsonrpc': '2.0',
'method': 'eth_getBlockReceipts',
'params': ['latest'],
'id': 'getblock.io'
})
print(f'Receipts: {response.json()["result"]}')Response
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": [
{
"transactionHash": "0x...",
"blockNumber": "0x1b4",
"from": "0x...",
"to": "0x...",
"status": "0x1",
"gasUsed": "0x5208",
"logs": []
}
]
}Response Parameters
Field
Type
Description
result
array
Array of transaction receipt objects.
Use Case
The eth_getBlockReceipts method is essential for:
Batch processing block transactions
Block indexing systems
Event log aggregation
Transaction analysis per block
Efficient data retrieval
Error Handling
Error Code
Message
Cause
-32602
Invalid params
Invalid block number.
-32603
Internal error
Block not found.
Web3 Integration
Previouseth_getBlockTransactionCountByNumber - HyperEVMNexteth_getBlockTransactionCountByHash - HyperEVM
Last updated
Was this helpful?