eth_getTransactionReceipt - Ronin RPC Method
Get transaction receipt with status and logs on Ronin. Essential for verifying transaction execution for blockchain gaming (Axie Infinity, Pixels), gaming NFT marketplaces, and in-game token economies.
Returns the receipt of a transaction by transaction hash on Ronin. Receipt is only available for mined transactions.
Why Ronin? Build on the gaming-first blockchain with 1M+ daily active wallets and $6.47B in NFT trading volume with purpose-built for gaming with $1.3B+ Axie revenue, zkEVM upgrade planned, Katana DEX, and Tama fair launch platform.
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 blockchain gaming (Axie Infinity, Pixels), gaming NFT marketplaces, and in-game token economies
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 Ronin. Essential for game developers, NFT gaming studios, and teams building play-to-earn economies tracking transactions on the gaming-first blockchain with 1M+ daily active wallets and $6.47B in NFT trading volume.
eth_estimateGas
Estimate gas required for transactions on Ronin. Essential for optimizing transaction costs for blockchain gaming (Axie Infinity, Pixels), gaming NFT marketplaces, and in-game token economies.