Skip to main content
Returns all transaction receipts for a given block.
Flashblocks: Query https://mainnet-preconf.base.org with "pending" to get receipts for all pre-confirmed transactions in the current Flashblock.

Parameters

block
string
required
Block number in hex, or "latest", "pending", "safe", "finalized", "earliest".

Returns

result
array
Array of receipt objects for each transaction in the block. See eth_getTransactionReceipt for the receipt object shape.

Example

curl https://mainnet.base.org \
  -X POST -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_getBlockReceipts","params":["latest"],"id":1}'