eth_getTransactionReceipt
Returns the receipt of a transaction by transaction hash.
Path parameters
Request
The hash of the transaction for which to get the receipt.
Response
The transaction receipt object containing various properties of the transaction receipt.
The sum of gas used by this transaction and all preceding transactions in the same block.
The amount of gas used for this specific transaction alone.
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).
Address of the receiver or null in a contract creation transaction.
The amount of blob gas used for this specific transaction. Only specified for blob transactions as defined by EIP-4844.
The contract address created, if the transaction was a contract creation, otherwise null.
The post-transaction state root. Only specified for transactions included before the Byzantium upgrade.
Either 1 (success) or 0 (failure). Only specified for transactions included after the Byzantium upgrade.
The actual value per gas deducted from the sender’s account for blob gas. Only specified for blob transactions as defined by EIP-4844.