Skip to main content
POST
eth_getBlockReceipts
Tempo API method that returns all transaction receipts for a given block. This is more efficient than fetching receipts individually when you need all receipts from a block.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • blockParameter — the block number (hex) or tag (latest, earliest, pending)

Response

  • result — array of receipt objects for all transactions in the block:
    • transactionHash — hash of the transaction
    • transactionIndex — index of the transaction in the block
    • blockHash — hash of the block
    • blockNumber — block number
    • from — sender address
    • to — recipient address
    • cumulativeGasUsed — total gas used in the block up to this transaction
    • gasUsed — gas used by this transaction
    • contractAddress — contract address if this was a deployment
    • logs — array of log objects
    • logsBloom — bloom filter for logs
    • status0x1 for success, 0x0 for failure
    • effectiveGasPrice — actual gas price paid
    • type — transaction type
    • feeToken — (Tempo-specific) token used to pay fees
    • feePayer — (Tempo-specific) address that paid the fees

eth_getBlockReceipts code examples

Body

application/json
jsonrpc
string
default:2.0
method
string
default:eth_getBlockReceipts
params
any[]

Block number or tag

id
integer
default:1

Response

200 - application/json

Array of transaction receipts

jsonrpc
string
id
integer
result
object[]

Array of receipt objects for all transactions in the block

Last modified on June 22, 2026