Returns information about a transaction given a blockhash and transaction index position.
Supported on Arbitrum Nova only.
Parameters
hash
- A blocks hash.quantity
- An integer of the transaction index position encoded as a hexadecimal.
Returns
object
- Transaction Response Object , or null if no transaction is found:hash
- The hash of the transactionnonce
- The number of transactions made by the sender prior to this one encoded as hexadecimal.blockHash
- The hash of the block where this transaction was in. null if pending.blockNumber
- The block number where this transaction was in. null if pending.transactionIndex
- Integer of the transactions index position in the block. null if pending.from
- Address of the sender.to
- Address of the receiver. Null when its a contract creation transaction.value
- The value transferred in Wei, encoded as a hexadecimal.gasPrice
- The gas price provided by the sender in Wei, encoded as a hexadecimal.gas
- The gas provided by the sender, encoded as a hexadecimal.input
- The data sent along with the transaction.v
- The standardized V field of the signature.standardV
- The standardized V field of the signature (0 or 1).r
- The R field of the signature.raw
- The raw transaction data.publickey
- The public key of the signer.chainid
- The chain id of the transaction, if any.
API Endpoint
The format of an Arbitrum Nova API endpoint is
https://open-platform.nodereal.io/{{apiKey}}/arbitrum/
Here is an example:
https://open-platform.nodereal.io/4c0a1c23661a4e26bcbcwed461e34ea9/arbitrum/
Example
Request
curl https://open-platform.nodereal.io/{{apiKey}}/arbitrum/ \
-X POST \
-H "Content-Type: application/json" \
--data '{"method":"eth_getTransactionByBlockHashAndIndex","params":["0x829df9bb801fc0494abf2f443423a49ffa32964554db71b098d332d87b70a48b","0x2"],"id":1,"jsonrpc":"2.0"}'
Result