Skip to main content

Documentation Index

Fetch the complete documentation index at: https://base-a060aa97-meyer9-discv5-p2p-protocol-id.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Returns information about a transaction given a block number and the transaction’s index position within that block.

Parameters

block
string
required
Block number in hex, or "latest", "pending", "safe", "finalized", "earliest".
index
string
required
The transaction index position as a hexadecimal integer.

Returns

result
object | null
A transaction object, or null if not found. See eth_getTransactionByHash for the full field list.

Example

{
  "jsonrpc": "2.0",
  "method": "eth_getTransactionByBlockNumberAndIndex",
  "params": ["latest", "0x0"],
  "id": 1
}