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

IndexedBlock

A block as returned by the indexer — header plus transactions and cron outcomes.

Definition

type IndexedBlock = {
  blockHeight: number
  createdAt: string
  hash: string
  appHash: string
  cronsOutcomes: string   // JSON-encoded outcomes
  transactions: IndexedTransaction[]
}

See also