eth_getTransactionByBlockHashAndIndex - SEI

Example code for the eth_getTransactionByBlockHashAndIndex JSON-RPC method. Complete guide on how to use eth_getTransactionByBlockHashAndIndex JSON-RPC in GetBlock Web3 documentation

Returns information about a transaction on the Sei network by block hash and transaction index position.

Parameters

Parameter
Type
Description

blockHash

string

The hash of the block

index

string

The transaction index position as a hex string

Request

curl --location 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "eth_getTransactionByBlockHashAndIndex",
    "params": ["0x9a5e2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a", "0x0"],
    "id": "getblock.io"
}'

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": {
        "hash": "0x88df01...",
        "blockNumber": "0x4B8F2A1",
        "from": "0x742d35Cc...",
        "to": "0x123456...",
        "value": "0x9184e72a"
    }
}

Response Parameters

Field
Type
Description

hash

string

The transaction hash

blockNumber

string

Block number containing this transaction

from

string

Address of the sender

to

string

Address of the receiver

value

string

Value transferred in wei

Use Case

The eth_getTransactionByBlockHashAndIndex method is essential for:

  • Blockchain developers building applications on Sei

  • Wallet applications requiring network data

  • Analytics platforms tracking Sei network activity

  • DeFi protocols integrating with Sei's parallelized EVM

Error Handling

Error Code
Message
Description

-32700

Parse error

Invalid JSON

-32600

Invalid Request

JSON is not a valid request object

-32601

Method not found

Method does not exist

-32602

Invalid params

Invalid method parameters

-32603

Internal error

Internal JSON-RPC error

-32000

Invalid input

Generic input error

-32500

Cross-VM error

Error in cross-VM operation (Sei-specific)

Web3 Integration

Last updated

Was this helpful?