eth_getRawTransactionByHash
Hyperliquid node API
eth_getRawTransactionByHash | Hyperliquid EVM
Returns the raw transaction data by its hash. Use this method to retrieve the RLP-encoded raw transaction when you have the transaction hash.
POST
eth_getRawTransactionByHash
This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see Hyperliquid methods for the full availability breakdown.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
transactionHash(string, required) — The 32-byte hash of the transaction
Returns
Returns the raw transaction data as a hex-encoded string, ornull if the transaction is not found.
The raw transaction data is RLP-encoded and includes all transaction fields in their original binary format.
Raw transaction data can be decoded using RLP decoding libraries to extract individual transaction fields like nonce, gas price, gas limit, recipient, value, and signature components.
Use cases
- Transaction broadcasting — Re-broadcast transactions to other networks
- Forensic analysis — Analyze transaction structure and encoding
- Cross-chain bridges — Verify transaction format across different networks
- Development tools — Debug transaction encoding and decoding
- Archive services — Store transactions in their original format
- Signature verification — Extract and verify transaction signatures
Body
application/json
JSON-RPC version
Available options:
2.0 The RPC method name
Available options:
eth_getRawTransactionByHash Parameters: [transactionHash]
Request identifier
Last modified on May 18, 2026