eth_getTransactionReceipt - Monad RPC Method
Get transaction receipt with status and logs on Monad. Essential for verifying transaction execution for high-throughput DeFi, latency-sensitive trading, and scalable EVM applications.
Returns the receipt of a transaction by transaction hash on Monad. Receipt is only available for mined transactions.
Why Monad? Build on the parallel EVM L1 delivering 10,000 TPS with 400ms blocks and sub-cent gas fees with optimistic parallel execution, MonadBFT consensus, $244M Paradigm-led funding, and consumer-grade validator hardware requirements.
Use Cases
The eth_getTransactionReceipt method is essential for:
- Transaction confirmation - Verify transaction was mined successfully
- Gas analysis - Check actual gas used vs estimated
- Event parsing - Read emitted events from logs
- Status verification - Confirm success/failure for high-throughput DeFi, latency-sensitive trading, and scalable EVM applications
Code Examples
Error Handling
| Error Code | Message | Description |
|---|---|---|
| -32602 | Invalid params | Invalid transaction hash |
Note: Returns null if transaction is not yet mined.
Related Methods
eth_getTransactionByHash- Get transaction detailseth_getLogs- Query logs by filter
eth_getTransactionByHash
Retrieve transaction details by hash on Monad. Essential for high-performance dApp developers, DeFi builders, and teams requiring Ethereum compatibility at scale tracking transactions on the parallel EVM L1 delivering 10,000 TPS with 400ms blocks and sub-cent gas fees.
eth_estimateGas
Estimate gas required for transactions on Monad. Essential for optimizing transaction costs for high-throughput DeFi, latency-sensitive trading, and scalable EVM applications.