メインコンテンツまでスキップ

State Tally

Every successful compute the framework runs against your state machine mints a tally token — a transferable, burnable, queryable receipt that says "this computation happened, at zeqond N, with proof p." The State Tally app is the surface for browsing, filtering, and auditing those receipts.

This is not a wallet, not a token launchpad, not a speculative asset. A tally is a proof of work performed by your state machine, in the literal sense — the entangled state row that minted it carries the operator list, the input digest, the output digest, and the ZeqCompliance v1 envelope.

Where it fits

LayerWhatThis page
The languageOperators — the verbs
Your computational backendState machine — your runtime
Per-call receiptTally tokens — the economy
Browsing surfaceState Tallyhere

What you see

The app is a paginated, filterable list of every tally minted against your machine. Each row carries:

  • The zeqond the compute landed at (and its UTC + phase).
  • The operator sequence that ran (e.g. KO42 · QM5 · GR40).
  • The input digest (sha256 — never the bytes).
  • The output digest + the ZeqProof the compute returned.
  • The compliance envelope ID + a link that opens the verify endpoint.
  • The tally amount minted (in ZTALLY).

Filter by zeqond range, operator, transition type, or compliance boolean (e.g. "show me every row where do_178c.tool_qualification_data === true").

Why it exists separately from the State Observer

The State Observer (at https://zeqapi.com/state/, outside the SDK docs) is the chain. It shows every row, including idle heartbeats, share unlocks, and state evolutions. Most of those rows do not mint tally — they mint state.

State Tally is the economic view: only rows that produced something a third party can later cite. For a pharma auditor or a SOX reviewer, that's the surface they want — the canonical list of "things you did and got paid for".

Composes with

File map

  • apps/zeq-dev/public/apps/zeq-ledger/ — the live UI
  • shared/api-core/src/routes/chain.tsGET /api/chain/:slug/tally/list
  • shared/api-core/src/lib/tally.ts — minter + ledger