eth_getTransactionReceipt - World Chain RPC Method
Get transaction receipt with status and logs on World Chain. Essential for verifying transaction execution for human-verified DeFi, identity-gated applications, bot-resistant services.
Returns the receipt of a transaction by transaction hash on World Chain. Receipt is only available for mined transactions.
Why World Chain? Build on the human-first Ethereum L2 powered by World ID with World ID integration for free gas and priority blockspace.
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 human-verified DeFi, identity-gated applications, bot-resistant services
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 World Chain. Essential for World Chain developers building sybil-resistant applications tracking transactions on the human-first Ethereum L2 powered by World ID.
eth_estimateGas
Estimate gas required for transactions on World Chain. Essential for optimizing transaction costs for human-verified DeFi, identity-gated applications, bot-resistant services.