eth_getTransactionReceipt - Tempo RPC Method
Get transaction receipt with status and logs on Tempo. Essential for verifying transaction execution for merchant settlement, treasury operations, payout automation, and stablecoin-native financial applications.
Returns the receipt of a transaction by transaction hash on Tempo. Receipt is only available for mined transactions.
Why Tempo? Build on a payments-first EVM chain with deterministic settlement and stablecoin-native fees with no native gas token, fees denominated in supported USD stablecoins, and full EVM RPC compatibility.
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 merchant settlement, treasury operations, payout automation, and stablecoin-native financial applications
Request Parameters
32-byte transaction hash
Response Body
1 (success) or 0 (failure)
Transaction hash
Block hash
Block number
Gas used by this transaction
Total gas used in block up to this tx
Array of log objects
Created contract address (if deployment)
Code Examples
curl -X POST https://api-tempo-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getTransactionReceipt",
"params": ["0x50b1857dce8dbe401e09610534de81655bc508c6765eb30ecefe24148c515c28"],
"id": 1
}'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 Tempo. Essential for payment application developers, wallet teams, stablecoin issuers, and treasury automation builders tracking transactions on a payments-first EVM chain with deterministic settlement and stablecoin-native fees.
eth_estimateGas
Estimate gas required for transactions on Tempo. Essential for optimizing transaction costs for merchant settlement, treasury operations, payout automation, and stablecoin-native financial applications.