eth_getTransactionReceipt - Hyperliquid RPC Method
Get transaction receipt with status and logs on Hyperliquid. Essential for verifying transaction execution for perpetual futures trading, onchain order books, and institutional-grade derivatives.
Returns the receipt of a transaction by transaction hash on Hyperliquid. Receipt is only available for mined transactions.
Why Hyperliquid? Build on the trading-focused EVM and HyperCore ecosystem built for onchain perpetuals and market data with HyperCore market structure, sub-second finality, and direct access to trading-focused data services.
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 perpetual futures trading, onchain order books, and institutional-grade derivatives
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 Hyperliquid. Essential for derivatives traders, DeFi protocols, and teams building high-frequency trading applications tracking transactions on the trading-focused EVM and HyperCore ecosystem built for onchain perpetuals and market data.
eth_estimateGas
Estimate gas required for transactions on Hyperliquid. Essential for optimizing transaction costs for perpetual futures trading, onchain order books, and institutional-grade derivatives.