Skip to main content

kaia_getTransactionByBlockHashAndIndex RPC Method

Returns information about a transaction given a blockhash and transaction index position.

Updated on
Aug 7, 2024

kaia_getTransactionByBlockHashAndIndex RPC Method

Parameters

blockHash
string
REQUIRED
The block hash
index
string
REQUIRED
An integer of the transaction index position encoded as a hexadecimal

Returns

object
object
The transaction response object, or null if no transaction is found:
blockHash
string
The hash of the block where this log was in. null when it's a pending log
blockNumber
string
The block number where this log was in. null when it's a pending log
feePayer
string
The address of the entity that paid the transaction fee
feePayerSignatures
array
The signatures provided by the fee payer for this transaction
v
string
The recovery ID of the digital signature
r
string
The first 32 bytes of the digital signature
s
string
The second 32 bytes of the digital signature
from
string
The address of the sender
gas
string
The gas provided by the sender, encoded as hexadecimal
gasPrice
string
The gas price provided by the sender in wei, encoded as hexadecimal
hash
string
The hash of the transaction
input
string
The data sent along with the transaction
nonce
string
The number of transactions made by the sender prior to this one encoded as hexadecimal
senderTxHash
string
The hash of the sender's transaction
signatures
array
The signatures provided by the sender for this transaction.
v
string
The recovery ID of the digital signature
r
string
The first 32 bytes of the digital signature
s
string
The second 32 bytes of the digital signature
to
string
The address of the receiver. null when it's a contract creation transaction
transactionIndex
string
The integer of the transaction's index position that the log was created from. null when it's a pending log
value
string
The value transferred in wei encoded as hexadecimal
type
string
The transaction type
typeInt
integer
The integer representation of the transaction type
Request
1
curl https://docs-demo.kaia-kairos.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{"method":"kaia_getTransactionByBlockHashAndIndex","params":["0x9dc634808601d93118a9dc67d53f990c4a2e2ec5f0dd3c1443bd6a96c13598db","0xe27"],"id":1,"jsonrpc":"2.0"}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free