โš ๏ธBlast API (blastapi.io) ends Oct 31. Migrate to Dwellir and skip Alchemy's expensive compute units.
Switch Today โ†’
Skip to main content

grandpa_roundState โ€“ Mythos JSON-RPC Method

Provides detailed GRANDPA round information, including the current set ID, active round, total authority weight, and which validators have prevoted or precommitted. Useful for diagnosing finality stalls or monitoring consensus health.

Parametersโ€‹

This method does not take parameters.

Returnsโ€‹

A structured object containing the current round, total weight, threshold, and arrays of missing votes.

Request Exampleโ€‹

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

Usage Tipsโ€‹

  • Combine with chain_subscribeFinalizedHeads to alert when rounds take longer than expected.
  • The missing arrays highlight validators that have not yet submitted votesโ€”handy for collator operations teams.