getTransactionByBlockNumberAndIndex

Returns information about a transaction by block number and transaction index position.

REQUEST

POST https://mainnet-slice-rpc.com
Content-Type: application/json

REQUEST PARAMS

  • BLOCK PARAMETER [required] - an integer block number, or the string "latest", "earliest" or "pending", see the default block parameter

  • TRANSACTION INDEX POSITION [required] - a hex of the integer representing the position in the block

EXAAMPLE

## JSON-RPC over HTTPS POST
curl https://mainnet-slice-rpc.com \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_getTransactionByBlockNumberAndIndex","params": ["0x5BAD55","0x0"],"id":1}'

## JSON-RPC over WSS
wscat -c ws://mainnet-slice-rpc.com
>{"jsonrpc":"2.0","method":"eth_getTransactionByBlockNumberAndIndex","params": ["0x5BAD55","0x0"],"id":1}

RESPONSE

RESULT FIELDS

  • TRANSACTION - A transaction object, or null when no transaction was found

    • hash: 32 Bytes - hash of the transaction.

    • nonce: the number of transactions made by the sender prior to this one.

    • blockHash: 32 Bytes - hash of the block where this transaction was in. null when its pending.

    • blockNumber: block number where this transaction was in. null when its pending.

    • transactionIndex: integer of the transactions index position in the block. null when its pending.

    • from: 20 Bytes - address of the sender.

    • to: 20 Bytes - address of the receiver. null when its a contract creation transaction.

    • value: value transferred in Wei.

    • gasPrice: gas price provided by the sender in Wei.

    • gas: gas provided by the sender.

    • input: the data send along with the transaction.

BODY

Last updated