Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

BlockInfo

A block header. Used by queryStatus to return the latest block.

Definition

type BlockInfo = {
  height: string
  timestamp: string
  hash: string
}

Fields

heightstring. Block height (string-encoded to avoid 2^53 overflow concerns).

timestampstring. Block timestamp.

hashstring. Block hash.

See also