eth_getTransactionReceipt
Transactions info | Monad
eth_getTransactionReceipt | Monad
Monad API method that returns the receipt of a transaction by transaction hash. eth_getTransactionReceipt on Monad via Chainstack.
POST
eth_getTransactionReceipt
Monad API method that returns the receipt of a transaction by transaction hash. Transaction receipts contain information about the execution of a transaction, including gas used, logs emitted, and status.
Get your 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.Last modified on May 18, 2026