跳到主要内容

eth_getTransactionByBlockNumberAndIndex

Returns the information about a transaction requested by the block number and index of which it was mined.

  • must have required property 'Block Number or Tags'
  • must have required property 'index'
curl --request POST \
--url https://evm.confluxrpc.com \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"params": [null,null],
"method": "eth_getTransactionByBlockNumberAndIndex"
}'

Params

blocknumber required

Block Number or Tags
oneOf
type : string
Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$

index required

Schema
type : number

Result

Transaction
type : object
  • accessList accessList
    type : array
    • items[x] AccessListItem
      type : object
      • address address
        type : string
        Pattern : ^(NET\d+|CFX|CFXTEST)(:TYPE\..*|):[ABCDEFGHJKMNPRSTUVWXYZ0123456789]{42}$
      • storageKeys storageKeys
        type : array
        • items[x] H256
          type : string
          Pattern : ^0x[0-9,a-f,A-F]{64}$
  • blockHash blockHash
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • blockNumber blockNumber
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • chainId chainId
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$
  • creates creates
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{40}$
  • from from
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{40}$
  • gas gas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • gasPrice gasPrice
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • hash hash
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • input input
    type : string
    Pattern : ^0x[0-9a-f]*$
  • maxFeePerGas maxFeePerGas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • maxPriorityFeePerGas maxPriorityFeePerGas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • nonce nonce
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • publicKey publicKey
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{128}$
  • r r
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • raw raw
    type : string
    Pattern : ^0x[0-9a-f]*$
  • s s
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • standardV standardV
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • status status
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$
  • to to
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{40}$
  • transactionIndex transactionIndex
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • transactionType transactionType
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$
  • v v
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • value value
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • yParity yParity
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,15}|0)$