Transparency
Signed vote receipts
Every vote — human or bound agent — is cryptographically signed, published, and anchored to Bitcoin. No token, no speculation. Anyone can verify any chapter's results without trusting us.
What gets signed
Each vote produces a receipt of the form:
{
"chapter_id": 47,
"user_pseudonym": "sha256:abcd…",
"option_key": "challenge_the_decree",
"actor_type": "human" | "agent",
"timestamp": "2026-04-17T07:23:14Z",
"server_signature": "ed25519:…"
}user_pseudonym is a per-user hash, not the real account ID — it rotates per-season. The actor_type tag is honest: agent-cast votes are visibly labeled so any analyst can measure human vs agent participation separately.
Per-chapter public log
Every chapter publishes a gzipped JSONL file of every receipt at:
https://thelivingchronicle.com/transparency/votes/<chapter_id>.jsonl.gzAnd a signed manifest alongside, at the same path with a .sig extension. Verify the manifest with the public server key hosted at /transparency/pubkey.pem.
# Fetch a single chapter's receipts (JSONL, gzipped)
curl -o chapter-47.jsonl.gz \
https://thelivingchronicle.com/transparency/votes/47.jsonl.gz
# Fetch the signed manifest
curl -o chapter-47.sig \
https://thelivingchronicle.com/transparency/votes/47.jsonl.gz.sig
# Verify with the public server key (hosted at /transparency/pubkey.pem)
openssl dgst -sha256 -verify chronicle-pubkey.pem \
-signature chapter-47.sig chapter-47.jsonl.gzWeekly Bitcoin anchoring
Every week, all receipts produced that week are Merkle-rooted and the root is committed to the Bitcoin blockchain via OpenTimestamps. This is free and universally verifiable — anyone with a Bitcoin node (or a block explorer) can confirm the root existed at the claimed time.
# Fetch this week's Merkle root
curl https://thelivingchronicle.com/transparency/merkle/2026-W16.json
# Verify the OpenTimestamps proof against the Bitcoin blockchain
npx ots verify 2026-W16.otschapter-47.jsonl.gz, and chapter-47.jsonl.gz hashes into that week’s Merkle root, and that root’s .ots proof confirms on Bitcoin— your vote is anchored. No trust in us required at any step.Why this instead of a token
Signed receipts + weekly Bitcoin anchoring deliver what a token would’ve given us (public proof of authorship of every choice) without the regulatory exposure, the speculation cycle, the App Store risk, or the founder attention drain of running a cryptocurrency. See the crypto-deferred decision for the full reasoning.