eth_getTransactionByBlockNumberAndIndex
Returns information about a transaction by block number and transaction index position
Parameters
QUANTITY|TAG
- a block number, or the string "earliest", "latest" or "pending", as in the default block parameter.QUANTITY
- the transaction index position.
Returns
Object
- The transaction response object, or null if no transaction is found:
blockHash
- The hash of the block where this log was in. null when it's a pending logblockNumber
- The block number where this log was in. null when it's a pending logfrom
- The address of the sendergas
- The gas provided by the sender, encoded as hexadecimalgasPrice
- The gas price provided by the sender in wei, encoded as hexadecimalmaxFeePerGas
- The maximum fee per gas set in the transactionmaxPriorityFeePerGas
- The maximum priority gas fee set in the transactionhash
- The hash of the transactioninput
- The data sent along with the transactionnonce
- The number of transactions made by the sender before this one encoded as hexadecimalto
- The address of the receiver. null when it's a contract creation transactiontransactionIndex
- The integer of the transaction's index position that the log was created from. null when it's a pending logvalue
- The value transferred in wei encoded as hexadecimaltype
- The transaction typechainId
- The chain id of the transaction, if anyv
- The standardized V field of the signaturer
- The R field of the signatures
- The S field of the signature
Request example
Response example
Last updated