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 a transaction object, ornull
if the transaction is not found.
Transaction object:
hash
— Transaction hashnonce
— Transaction nonce (hex string)blockHash
— Hash of containing block (null if pending)blockNumber
— Number of containing block (null if pending)transactionIndex
— Index in block (null if pending)from
— Sender addressto
— Receiver address (null for contract creation)value
— Value transferred in wei (hex string)gas
— Gas limit (hex string)gasPrice
— Gas price in wei (hex string)input
— Transaction datav
,r
,s
— ECDSA signature componentstype
— Transaction type (0x0 for legacy, 0x2 for EIP-1559)
On Hyperliquid, priority fees are always zero. EIP-1559 transactions use only the base fee.
Use cases
- Transaction verification — Confirm transaction details and status
- Wallet applications — Display transaction history to users
- Payment confirmation — Verify payment transactions
- Block explorers — Show detailed transaction information
- DeFi protocols — Track protocol interactions
- Analytics — Analyze transaction patterns and data
Body
application/json