For the complete documentation index, see llms.txt. This page is also available as Markdown.

chain_getFinalizedHead - Midnight

Example code for the chain_getFinalizedHead JSON-RPC method. Complete guide on how to use chain_getFinalizedHead JSON-RPC in GetBlock Web3 documentation.

This method returns the hash of the latest finalized block. Finalized blocks are confirmed by GRANDPA and cannot be reverted. The spelling variant chain_getFinalisedHead is also supported and returns the same value.

Parameters

  • None

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "chain_getFinalizedHead",
    "params": [],
    "id": "getblock.io"
}'

Response Example

{
    "jsonrpc": "2.0",
    "result": "0xb26f48fdafcedfd991a681e9c0e910e60c4d7beac3c9b18d4ff834e82d63b3d8",
    "id": "getblock.io"
}

Response Parameters

Field
Type
Description

result

string

Hash of the latest finalized block

Use Cases

  • Finality-aware indexers that only process irreversible blocks

  • Computing safe confirmation depth

  • Bridges and exchanges that wait for finality before crediting deposits

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32601

Method not found

The method is not enabled on this node or has been deprecated

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?