eth_getTransactionReceipt - Pulsechain RPC Method
Get transaction receipt with status and logs on Pulsechain. Essential for verifying transaction execution for low-cost DeFi, staking protocols, and Ethereum-compatible dApps with reduced fees.
Returns the receipt of a transaction by transaction hash on Pulsechain. Receipt is only available for mined transactions.
Why Pulsechain? Build on the Ethereum fork L1 with lower gas fees and proof-of-stake consensus with full Ethereum state fork, proof-of-stake consensus, lower gas fees than Ethereum mainnet, and PulseX DEX ecosystem.
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 low-cost DeFi, staking protocols, and Ethereum-compatible dApps with reduced fees
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 Pulsechain. Essential for DeFi developers, staking protocol builders, and teams migrating from Ethereum tracking transactions on the Ethereum fork L1 with lower gas fees and proof-of-stake consensus.
eth_estimateGas
Estimate gas required for transactions on Pulsechain. Essential for optimizing transaction costs for low-cost DeFi, staking protocols, and Ethereum-compatible dApps with reduced fees.