githubEdit

eth_getUncleByBlockHashAndIndex - Optimism

Example code for the eth_getUncleByBlockHashAndIndex json-rpc method. Сomplete guide on how to use eth_getUncleByBlockHashAndIndex json-rpc in GetBlock.io Web3 documentation.

This method returns uncle (ommer) block information.

circle-info

On Optimism, which uses a sequencer model rather than PoW consensus, uncles don't exist in the traditional sense, so this method typically returns null. It's maintained for Ethereum JSON-RPC compatibility.

Parameters

Parameter
Type
Description
Required

blockHash

DATA, 32 Bytes

The hash of a block.

Yes

uncleIndex

QUANTITY

The uncle's index position in hex.

Yes

Request Sample

curl --location 'https://go.getblock.us/<ACCESS_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
   "jsonrpc": "2.0",
  "method": "eth_getUncleByBlockHashAndIndex",
  "params": [
    "0x1648eed8c4befcf5a1e517bf07302bf4ab3ba61fb6a8669a506e0ba5784ae0f2",
    "0x0"
  ],
    "id": "getblock.io"
}'

Response

A successful response returns the following:

Response Parameters

  • id: A unique request identifier, matching the id sent in the request body.

  • jsonrpc: Specifies the use of JSON-RPC version 2.0.

  • result: Uncle block object or null (typically null on Optimism).

Use Case

The eth_getUncleByBlockHashAndIndex method is commonly used for:

  • Ethereum compatibility

  • API completeness

Error handling

Status Code
Error Message
Cause

404

Not Found

Missing or invalid ACCESS_TOKEN.

-32602

Invalid argument

  • Invalid block hash

  • Invalid index

Last updated

Was this helpful?