Skip to main content

chain_getFinalizedHead

Returns the hash of the last finalized block on Bifrost.

Use Cases#

  • Confirmed state - Query state that cannot be reverted
  • Transaction confirmation - Verify transaction finality for omnichain liquid staking (vDOT, vKSM, vGLMR, vMOVR, vASTR), cross-chain vToken governance, and DOT/ETH liquidity bridging
  • Safe checkpoints - Use finalized blocks for critical operations

Parameters#

This method accepts no parameters.

Request#

{
"jsonrpc": "2.0",
"method": "chain_getFinalizedHead",
"params": [],
"id": 1
}

Code Examples#

curl https://api-bifrost-polkadot.n.dwellir.com/YOUR_API_KEY \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "chain_getFinalizedHead",
"params": [],
"id": 1
}'