eth_getTransactionReceipt - SEI

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

Returns the receipt of a transaction on the Sei network by transaction hash. Returns null if the transaction is pending.

Parameters

Parameter
Type
Description

transactionHash

string

The hash of the transaction

Request

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

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": {
        "transactionHash": "0x88df01...",
        "blockNumber": "0x4B8F2A1",
        "gasUsed": "0x5208",
        "status": "0x1",
        "logs": [],
        "contractAddress": null
    }
}

Response Parameters

Field
Type
Description

transactionHash

string

The transaction hash

blockNumber

string

Block number containing this transaction

gasUsed

string

Amount of gas used

status

string

'0x1' for success, '0x0' for failure

logs

array

Array of log objects generated by this transaction

contractAddress

string

Contract address created, if any

Use Case

The eth_getTransactionReceipt 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

Common errors when using this method:

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?