Recompute Agreement
Classical ledgers guess at "time". Zeq binds every block and every fact to the Zeqond it was sealed at — so integrity becomes time-witnessable, with no network vote needed.
Read this first: nothing in this theme is a blockchain. No consensus rounds, no mining, no fee market, no global ledger. Each machine owns its own entangled state — a hash-linked, tamper-evident transition log, PoEZ-sealed so rewriting history costs real elapsed Zeqonds. The protocols here compose signed facts and quorum signatures on top of those sovereign chains; "fork choice" below means choosing between candidate histories of one machine by their Zeqond drift, not coordinating a network. (The theme keeps its historical consensus-ledger URL.)
- Theme — consensus-ledger
- Protocol count — 22 (block-propose, block-seal, fork-choice, finality, fact-publish, fact-verify, dag-walk, quorum-sign, validator-join, validator-retire variants)
- Anchor operators —
KO42 · CS87 · ZEQ-TETHER-003 - Verification — bit-exact block commitments; bit-exact DAG verify
What it solves
Ledger systems have always had to invent their own time. Bitcoin's block timestamp is a claim, not a fact. Proof-of-stake variants rely on slot clocks they define themselves. Zeq removes that tax: every block and every fact is bound to the Zeqond at which it was sealed, signed by the tethered verifier that sealed it. Integrity is then checked by anyone, offline, by recomputation — not negotiated by a quorum of strangers.
Two primary structures live here:
- The entangled state — each machine's hash-linked log, where every block commits to
phase_at_seal, zeqond, parent_hash, tether_quorum_sig. Between two candidate histories of the same machine, prefer the entangled state whose cumulative Zeqond drift is smallest. Verifiers join and retire viaZEQ-TETHER-003quorum signatures. See the Entangled State Explorer. - Truth DAG — a directed graph of signed facts
(claim, author, phase, zeqond, parents, signature). Verification is a purely cryptographic DAG walk; no trusted timestamping authority needed.
CS87 is the Kolmogorov floor on block / fact identifier material; ZEQ-TETHER-003 is the quorum primitive that makes verifier sets themselves first-class objects.
Operator map
| Operator | Formula | Role |
|---|---|---|
| KO42.1 | ds² = g_μν dx^μ dx^ν + α sin(2π · 1.287 t) dt² | Mandatory — block / fact time-binding |
| CS87 | `Ω(x) = min{ | p |
| ZEQ-TETHER-003 | `B_sib = ∑_k e^(i·φ_k) | sibling_k⟩` |
Runnable worked example — seal + verify a block
# 1. Seal
curl -s -X POST https://zeqapi.com/api/playground/compute \
-H "Authorization: Bearer $ZEQ_DEMO_KEY" \
-H "Content-Type: application/json" \
-d '{
"operators": ["KO42", "CS87", "ZEQ-TETHER-003"],
"inputs": {
"protocol": "block-seal",
"parent_hash": "0x...",
"txs": ["tx1","tx2","tx3"]
}
}'
Expected:
{
"block_hash": "0x...",
"height": 10422,
"phase_at_seal": 0.3311,
"zeqond": 1745125300.144,
"quorum_signers": 7
}
# 2. Fork-choice query
curl -s -X POST https://zeqapi.com/api/playground/compute \
-H "Authorization: Bearer $ZEQ_DEMO_KEY" \
-H "Content-Type: application/json" \
-d '{"operators":["KO42","CS87"],"inputs":{"protocol":"fork-choice","heights":[10418,10419,10420,10421,10422]}}'
Expected: the entangled state whose cumulative Zeqond drift is minimal, with the drift value explicit in the response.
Extend it
- Cross-system anchoring — publish an entangled-state head hash to an external system (even a public blockchain) as an additional time-witness; the proof stays self-contained either way.
- Light-client attestation — a phone-sized client only needs Zeqonds + quorum signatures to verify inclusion.
- Supply-chain Truth DAG — every transition in a physical supply chain is a fact whose parents are the upstream facts; tampering is a visible DAG mutation.
Seeds
- Stake-without-token verification — Zeqond-weighted verifiers without a coin economy; compute contribution is the stake.
- Planetary-scale finality — ZTB1 + interplanetary latency models drive deep-space sealing cadences.
- ZK-compliance blocks — every block carries a ZK proof that its transitions satisfy a regulatory predicate, without revealing the transitions.
Papers
- Zeq framework paper — DOI 10.5281/zenodo.15825138
- Zeq paper — DOI 10.5281/zenodo.18158152
Middleware active. Kernel on the 1.287 Hz HulyaPulse. Awaiting next Zeqond.