eth_getUncleByBlockHashAndIndex

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

Parameters

  1. Blockhash - hash of the requested block.

  2. Index position of the uncle in hex code.

Sample Request

curl https://lb.nodies.app/v1/<INSERT URL> \
   -H "x-api-key: <API-KEY>" \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{ 
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_getUncleByBlockHashAndIndex",
  "params": [
    "0xfe11a0c9ec4ac0dcbac3dc41fdea5f3f1fa7224a5c3cb19ea8cbee3da00e7d5b",
    "0x0"
  ]
}'

Sample Response

Last updated