eth_getTransactionByHash - Celo RPC Method
Retrieve transaction details by hash on Celo. Essential for mobile payment developers, fintech builders, and teams targeting emerging markets tracking transactions on the mobile-first L2 powering 500K+ daily active users and $2B+ monthly stablecoin volume.
Returns the information about a transaction by transaction hash on Celo.
Why Celo? Build on the mobile-first L2 powering 500K+ daily active users and $2B+ monthly stablecoin volume with phone number-based addressing, sub-cent fees, 150+ country adoption, Nightfall privacy layer, and Opera browser integration.
When to Use This Method
eth_getTransactionByHash is essential for mobile payment developers, fintech builders, and teams targeting emerging markets:
- Track pending and confirmed transaction status: Monitor the full lifecycle of a transaction from submission through finalization on Celo
- Verify transaction parameters: Confirm the value, gas, and input data match your intent for mobile stablecoin payments (MiniPay 10M+ wallets), remittances, humanitarian aid, and local currency stablecoins (cUSD, cNGN, cEUR)
- Wallet transaction history display: Show detailed transaction records with sender, receiver, value, and status for end users
- Debug failed transactions: Inspect raw transaction data to diagnose reverted calls and unexpected behavior on the mobile-first L2 powering 500K+ daily active users and $2B+ monthly stablecoin volume
Common Use Cases
1. Wait for Transaction Confirmation with Polling
Poll eth_getTransactionByHash until the transaction's blockNumber becomes non-null, indicating it has been mined on Celo. This is the standard pattern for tracking transaction finality.
import { JsonRpcProvider } from 'ethers';
const provider = new JsonRpcProvider('https://api-celo-mainnet-archive.n.dwellir.com/YOUR_API_KEY');
async function waitForConfirmation(txHash, interval = 2000) {
while (true) {
const tx = await provider.getTransaction(txHash);
if (tx && tx.blockNumber) {
console.log(`Transaction confirmed in block #${tx.blockNumber}`);
return tx;
}
console.log('Transaction pending, waiting...');
await new Promise(r => setTimeout(r, interval));
}
}
waitForConfirmation('0x69d8e9317be809224e01515be6cf3d0716e92b340a680832c45e5e668ff05abe');2. Display Transaction Details in a Wallet UI
Fetch and format transaction data for display in a wallet or explorer on Celo. Extract the key fields: sender, recipient, value, gas, and confirmation status.
from web3 import Web3
w3 = Web3(Web3.HTTPProvider('https://api-celo-mainnet-archive.n.dwellir.com/YOUR_API_KEY'))
def get_transaction_details(tx_hash):
tx = w3.eth.get_transaction(tx_hash)
if not tx:
return {'status': 'not found'}
return {
'hash': tx['hash'].hex(),
'from': tx['from'],
'to': tx['to'],
'value_ether': w3.from_wei(tx['value'], 'ether'),
'gas': tx['gas'],
'gas_price_gwei': w3.from_wei(tx['gasPrice'], 'gwei'),
'block': tx.get('blockNumber'),
'confirmed': tx.get('blockNumber') is not None,
}
details = get_transaction_details('0x69d8e9317be809224e01515be6cf3d0716e92b340a680832c45e5e668ff05abe')
for key, value in details.items():
print(f'{key}: {value}')3. Decode Transaction Input Data for Contract Interaction Analysis
When a transaction's input field contains encoded function calls, decode it using a contract ABI to understand what action was performed on the mobile-first L2 powering 500K+ daily active users and $2B+ monthly stablecoin volume.
package main
import (
"context"
"fmt"
"log"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/ethclient"
)
func main() {
client, _ := ethclient.Dial("https://api-celo-mainnet-archive.n.dwellir.com/YOUR_API_KEY")
txHash := common.HexToHash("0x69d8e9317be809224e01515be6cf3d0716e92b340a680832c45e5e668ff05abe")
tx, isPending, _ := client.TransactionByHash(context.Background(), txHash)
fmt.Printf("Pending: %v\n", isPending)
fmt.Printf("From: %s\n", tx.From().Hex())
fmt.Printf("Value: %s wei\n", tx.Value().String())
fmt.Printf("Gas limit: %d\n", tx.Gas())
if len(tx.Data()) > 0 {
// First 4 bytes are the function selector
selector := tx.Data()[:4]
fmt.Printf("Function selector: 0x%x\n", selector)
fmt.Printf("Input data length: %d bytes\n", len(tx.Data()))
}
}Best Practices
- Check if
blockNumberis null to detect pending transactions: A nullblockNumberindicates the transaction has been submitted but not yet mined; use this to drive polling or loading states in your UI - For mined transactions, cross-reference with receipt for confirmation count: Once a block number is available, use
eth_getTransactionReceiptto get the final status, gas used, and emitted logs - Cache confirmed transaction data indefinitely: Transaction data is immutable once mined; cache it permanently to avoid redundant RPC calls for historical lookups
- Use
eth_getTransactionReceiptfor post-confirmation data: After a transaction is confirmed, calleth_getTransactionReceiptto get gas used, logs, status code, and effective gas price
Code Examples
Error Handling
| Error Code | Message | Description |
|---|---|---|
| -32602 | Invalid params | Invalid transaction hash format |
Related Methods
eth_getTransactionReceipt- Get transaction receipteth_sendRawTransaction- Send transaction
eth_sendRawTransaction
Submit signed transactions to Celo. Essential for broadcasting transactions for mobile stablecoin payments (MiniPay 10M+ wallets), remittances, humanitarian aid, and local currency stablecoins (cUSD, cNGN, cEUR).
eth_getTransactionReceipt
Get transaction receipt with status and logs on Celo. Essential for verifying transaction execution for mobile stablecoin payments (MiniPay 10M+ wallets), remittances, humanitarian aid, and local currency stablecoins (cUSD, cNGN, cEUR).