Documentation Index
Fetch the complete documentation index at: https://base-a060aa97-meyer9-move-azul-to-top-of-upgrades.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Returns information about a transaction given its hash. Returns null for unknown transactions.
Parameters
The 32-byte transaction hash.
Returns
A transaction object, or null if the transaction was not found.
32-byte transaction hash.
Number of transactions sent by the sender prior to this one (hex).
32-byte hash of the block containing this transaction. null if pending.
Block number (hex). null if pending.
Index position in the block (hex). null if pending.
20-byte recipient address. null for contract deployments.
ETH value transferred in wei (hex).
Gas provided by the sender (hex).
Gas price in wei. For EIP-1559 transactions, this is the effective gas price paid (hex).
EIP-1559 maximum total fee per gas (hex). Present for type 0x2 transactions only.
EIP-1559 maximum priority fee per gas (hex). Present for type 0x2 transactions only.
ABI-encoded call data. "0x" for plain ETH transfers.
Transaction type: "0x0" Legacy, "0x1" Access List, "0x2" EIP-1559, "0x7e" Deposit (L1→L2).
Chain ID the transaction is valid for. "0x2105" for Base Mainnet, "0x14a34" for Base Sepolia.
List of addresses and storage keys pre-declared by the transaction (EIP-2930). Present for type 0x1 and 0x2 transactions.
32-byte ECDSA signature component r (hex).
32-byte ECDSA signature component s (hex).
Example
{
"jsonrpc": "2.0",
"method": "eth_getTransactionByHash",
"params": ["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"],
"id": 1
}