Skip to main content

GetInTransactionByBlockHashAndIndex

Transactions

Returns the structure of the internal transaction with the given index

Params

(2)

1. hash (required)

string

The hash of the block whose information is requested.

2. index (required)

integer

The index of the transaction whose information is requested.

Result

(rpcInTransaction)

The transaction whose information is requested.

BlockHash
string
required

The hash of the block containing the transaction.

BlockNumber
integer
required

The number of the block containing the transaction.

GasUsed
string
required

The amount of gas spent on the transaction.

Index
string
required

The transaction index.

Success
boolean
required

The flag that shows whether the transaction was successful.

Transaction
transaction
required

The transaction data.

API credentials

Username

Token

Params

hash

index


Request

curl -X POST https://api.devnet.nil.foundation/api/undefined/undefined \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getInTransactionByBlockHashAndIndex",
"params": [
null,
null
],
"id": 1
}'