Skip to main content

eth_getTransactionReceipt

Returns the receipt of a transaction given transaction hash. Note that the receipt is not available for pending transactions.

Parameters

transaction hash: [Required] A string representing the hash (32 bytes) of a transaction.

Returns

A transaction receipt object, or null when no receipt was found. The transaction receipt object will contain the following keys and their values:

  • blockHash: 32 bytes. Hash of the block including this transaction.
  • blockNumber: Block number including this transaction.
  • contractAddress: 20 bytes. The contract address created if the transaction was a contract creation, otherwise null.
  • cumulativeGasUsed: The total amount of gas used when this transaction was executed in the block.
  • effectiveGasPrice: The actual value per gas deducted from the sender's account. Before EIP-1559, equal to the gas price.
  • from: 20 bytes. The address of the sender.
  • gasUsed: The amount of gas used by this specific transaction alone.
  • logs: (Array) An array of log objects generated by this transaction.
  • logsBloom: 256 bytes. Bloom filter for light clients to quickly retrieve related logs.
  • One of the following:
    • root : 32 bytes of post-transaction stateroot (pre-Byzantium)
    • status: Either 1 (success) or 0 (failure)
  • to: 20 bytes. The address of the receiver. null when the transaction is a contract creation transaction.
  • transactionHash: 32 bytes. The hash of the transaction.
  • transactionIndex: Hexadecimal of the transaction's index position in the block.
  • type: the transaction type.

Example

Replace YOUR-API-KEY with the API key from your Infura Dashboard.

Request

curl https://mainnet.infura.io/v3/YOUR-API-KEY \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_getTransactionReceipt","params": ["0xbb3a336e3f823ec18197f1e13ee875700f08f03e2cab75f0d0b118dabb44cba0"],"id":1}'

Response

{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0xb3b20624f8f0f86eb50dd04688409e5cea4bd02d700bf6e79e9384d47d6a5a35",
"blockNumber": "0x5bad55",
"contractAddress": null,
"cumulativeGasUsed": "0xb90b0",
"effectiveGasPrice":"0x746a528800",
"from": "0x398137383b3d25c92898c656696e41950e47316b",
"gasUsed": "0x1383f",
"logs": [
{
"address": "0x06012c8cf97bead5deae237070f9587f8e7a266d",
"blockHash": "0xb3b20624f8f0f86eb50dd04688409e5cea4bd02d700bf6e79e9384d47d6a5a35",
"blockNumber": "0x5bad55",
"data": "0x000000000000000000000000398137383b3d25c92898c656696e41950e47316b00000000000000000000000000000000000000000000000000000000000cee6100000000000000000000000000000000000000000000000000000000000ac3e100000000000000000000000000000000000000000000000000000000005baf35",
"logIndex": "0x6",
"removed": false,
"topics": [
"0x241ea03ca20251805084d27d4440371c34a0b85ff108f6bb5611248f73818b80"
],
"transactionHash": "0xbb3a336e3f823ec18197f1e13ee875700f08f03e2cab75f0d0b118dabb44cba0",
"transactionIndex": "0x11"
}
],
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000200000000000000000000000000000",
"status": "0x1",
"to": "0x06012c8cf97bead5deae237070f9587f8e7a266d",
"transactionHash": "0xbb3a336e3f823ec18197f1e13ee875700f08f03e2cab75f0d0b118dabb44cba0",
"transactionIndex": "0x11",
"type": "0x0"
}
}