eth_getTransactionReceipt - Avalanche RPC Method
Get transaction receipt with status and logs on Avalanche. Essential for verifying transaction execution for institutional RWA tokenization ($18B+ transfer volume), gaming subnets, and enterprise blockchains.
Returns the receipt of a transaction by transaction hash on Avalanche. Receipt is only available for mined transactions.
Why Avalanche? Build on the fastest smart contract platform with sub-second finality and customizable L1 subnets with sub-second finality, Evergreen subnets for institutions, and partnerships with Franklin Templeton, VanEck, and Bergen County.
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 institutional RWA tokenization ($18B+ transfer volume), gaming subnets, and enterprise blockchains
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 Avalanche. Essential for enterprise developers, RWA tokenizers, and teams building custom blockchain networks tracking transactions on the fastest smart contract platform with sub-second finality and customizable L1 subnets.
eth_estimateGas
Estimate gas required for transactions on Avalanche. Essential for optimizing transaction costs for institutional RWA tokenization ($18B+ transfer volume), gaming subnets, and enterprise blockchains.