Skip to main content

eth_getUncleByBlockNumberAndIndex

Returns information about a uncle of a block by hash and uncle index position.

  • 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_getUncleByBlockNumberAndIndex"
}'

Params

uncleBlockNumber 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

Block representation
type : object
  • author author
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{40}$
  • baseFeePerGas baseFeePerGas
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • difficulty difficulty
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • extraData extraData
    type : string
    Pattern : ^0x[0-9a-f]*$
  • gasLimit gasLimit
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • gasUsed gasUsed
    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}$
  • logsBloom logsBloom
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{512}$
  • miner miner
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{40}$
  • mixHash mixHash
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • nonce nonce
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{16}$
  • number number
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • parentHash parentHash
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • receiptsRoot receiptsRoot
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • sha3uncle sha3uncle
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • size size
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • stateRoot stateRoot
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • timestamp timestamp
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • totalDifficulty totalDifficulty
    type : string
    Pattern : ^0x([1-9a-f][0-9a-f]{0,63}|0)$
  • transactions transactions
    oneOf
    type : array
    • items[x] H256
      type : string
      Pattern : ^0x[0-9,a-f,A-F]{64}$
  • transactionsRoot transactionsRoot
    type : string
    Pattern : ^0x[0-9,a-f,A-F]{64}$
  • uncles uncles
    type : array
    • items[x] H256
      type : string
      Pattern : ^0x[0-9,a-f,A-F]{64}$