Entangled State Explorer
Every state machine owns an entangled state — a hash-linked, tamper-evident transition log where every row is anchored to the Zeqond at which it was sealed. (This page was formerly titled "Zeq Blockchain"; the URL keeps that historical slug.)
- Live app →
/apps/zeq-blockchain/(the app ID keeps its historical name) - Operators →
KO42 · CS87 · ZEQ-TETHER-003 - Error budget → 0.000% bit-exact transition commitments
First, what this is not
This is not a blockchain. No consensus, no mining, no validators voting, no fee market, no global ledger. Each machine owns its own chain: every transition is hash-entangled with the prior row, Zeqond-stamped, Ed25519-signed, and bound by the Proof-of-Elapsed-Zeqonds seal spine, so silently rewriting history costs real elapsed time. Integrity is checked by recompute agreement — anyone re-runs the math offline and the bits either reproduce or they don't. Nothing is negotiated by a network.
What it solves
Audit logs usually ask you to trust the database they live in. The entangled state removes that ask three ways:
- Hash linkage — each row commits to its parent's hash, so any upstream mutation is visible downstream.
- Temporal sealing — PoEZ seals bind rows to elapsed Zeqonds; a forger must spend real wall-clock time to re-seal a rewritten history.
- Offline recompute — the verifier script needs no DB, no network, no secrets. The proof is the arithmetic, not the server's word.
CS87 provides the key-material floor on identifiers and signatures; ZEQ-TETHER-003 lets a multi-device verifier set co-sign attestations.
The math — 7-step Wizard applied
| Step | Decision |
|---|---|
| 1. Prime | KO42 mandatory |
| 2. Limit | CS87 + ZEQ-TETHER-003 + KO42 = 3 |
| 3. Scale | Sealing on the 1.287 Hz system-clock cadence |
| 4. Precision | Hamming = 0 on row hashes |
| 5. Compile | Master Equation |
| 6. Execute | Functional Equation |
| 7. Verify | Offline recompute reproduces the chain bit-for-bit |
Verbatim formulas:
- KO42.1 —
ds² = g_μν dx^μ dx^ν + α sin(2π · 1.287 t) dt² - CS87 —
Ω(x) = min{|p| : U(p) = x} - ZEQ-TETHER-003 —
B_sib = ∑_k e^(i·φ_k) |sibling_k⟩
Runnable worked example — pull seals, verify offline
# 1. Pull the most recent PoEZ seals from a live node
curl -s "https://zeqstate.com/api/chain/seal?seals=50" > seal.json
# 2. Fetch the standalone verifier (zero deps, zero secrets)
curl -fsSO https://zeqstate.com/verify-zeq-chain.mjs
# 3. Verify on your machine — no network, no trust in the server
node verify-zeq-chain.mjs seal.json
The verifier re-links every hash, re-checks every Ed25519 signature, and re-runs the PoEZ verification. If any row was rewritten, it tells you exactly where the linkage breaks.
For blockchain builders
If you operate an actual blockchain, ZeqVM doesn't compete with it — it offers services your chain can consume:
- External anchoring — publish an entangled-state head hash to your chain (or publish your chain's block hash into an entangled state) as a mutual time-witness; each proof stays self-contained.
- Deterministic recompute as an oracle discipline — every ZeqVM result is bit-for-bit reproducible by any party, a stronger guarantee than most oracle attestations.
- Temporal sealing — PoEZ gives "this existed at least N Zeqonds ago" as a verifiable primitive your protocol can build on.
Seeds
- Forensic audit trail — because seals witness elapsed Zeqonds after the fact, a historical chain can be audited even if the operating node is long gone.
- Supply-chain provenance — every physical transition lands a hash-linked row; tampering is a visible linkage break, not a he-said-she-said.
- Zero-knowledge compliance — commit ZK proofs of policy compliance into transition rows 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.