Get you 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
data— the 32-byte hash of the transaction.
Response
result— the transaction receipt object, ornullwhen no receipt was found:transactionHash— hash of the transactiontransactionIndex— integer of the transaction’s index positionblockHash— hash of the block containing this transactionblockNumber— number of the block containing this transactionfrom— address of the senderto— address of the receivercumulativeGasUsed— total gas used when this transaction was executedgasUsed— gas used by this specific transactioncontractAddress— address of the created contract (if any)logs— array of log objectslogsBloom— bloom filter for light clientsstatus—1(success) or0(failure)
eth_getTransactionReceipt code examples
Use case
A practical use case foreth_getTransactionReceipt is verifying transaction success and extracting event logs emitted during execution.Body
application/json