eth_getBlockReceipts
Returns the receipts of a block by number or hash.
Path parameters
apiKey
Request
This endpoint expects an object.
Block number or tag or hash
The block number, tag, or hash to retrieve receipts from.
Response
An array of transaction receipt objects.
transactionHash
transactionIndex
blockHash
blockNumber
from
cumulativeGasUsed
The sum of gas used by this transaction and all preceding transactions in the same block.
gasUsed
The amount of gas used for this specific transaction alone.
logs
logsBloom
effectiveGasPrice
The actual value per gas deducted from the sender’s account. Before EIP-1559, this is equal to the transaction’s gas price. After, it is equal to baseFeePerGas + min(maxFeePerGas - baseFeePerGas, maxPriorityFeePerGas).
type
to
Address of the receiver or null in a contract creation transaction.
blobGasUsed
The amount of blob gas used for this specific transaction. Only specified for blob transactions as defined by EIP-4844.
contractAddress
The contract address created, if the transaction was a contract creation, otherwise null.
root
The post-transaction state root. Only specified for transactions included before the Byzantium upgrade.
status
Either 1 (success) or 0 (failure). Only specified for transactions included after the Byzantium upgrade.
blobGasPrice
The actual value per gas deducted from the sender’s account for blob gas. Only specified for blob transactions as defined by EIP-4844.