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
| Layer | What | This page |
|---|---|---|
| The language | Operators — the verbs | — |
| Your computational backend | State machine — your runtime | — |
| Per-call receipt | Tally tokens — the economy | — |
| Browsing surface | State Tally | here |
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
- Tally tokens — the protocol-level surface.
- The 7-step Wizard protocol — every minted tally is a Wizard run.
- ZeqCompliance v1 — the auditor-readable envelope.
- State machine — the runtime that minted them.
File map
apps/zeq-dev/public/apps/zeq-ledger/— the live UIshared/api-core/src/routes/chain.ts—GET /api/chain/:slug/tally/listshared/api-core/src/lib/tally.ts— minter + ledger