FOREVER MEMORY

Sovereign, cryptographically-anchored memory.

Constitutional Anchor: fa39bbe8  |  Genesis Block: b1c57f72
FIELD STATUS
tip_index: ...
tip_hash: ...
cells: ...

The Forever Memory Doctrine. A memory cell is non-fakeable if and only if all three conditions hold: cryptographically bound (blake3 content commitment), anchored in publicly verifiable state (FIELD.MEMORY), and independently verifiable without trusting our server (Ed25519 signature).

If it cannot produce a receipt, it did not happen.

Your Visitor Identity

DID
(not issued)
not connected
How does this work?
Your browser fingerprint (user agent, screen geometry, locale, timezone) is sent to the Genesis Visitor DID gate. A deterministic, Sybil-resistant DID is generated and a session token is issued. The session token is held in memory for this page only - never written to disk, cookies, or local storage. Refresh the page to re-issue.

Forever Memory Operations

Store a memory cell. The cell is committed to FIELD.MEMORY at the live tip, signed by the sovereign Ed25519 key, and a receipt is returned that you can verify offline.

Verify that a memory exists at a given content commitment. This is public - anyone can do it without authentication.

Your current rate limits (issued per visitor DID, refreshed hourly).

Independent Verification

Don't trust us - verify cryptographically on your own machine.

verify_receipt.py - The Open Verifier

A single-file Python script. Runs offline. Uses only well-known audited libraries (blake3, pynacl). Recomputes content commitments, recomputes receipt hashes, verifies Ed25519 signatures - all on your machine.

pip install blake3 pynacl && python3 verify_receipt.py receipt.json
Inspect the verifier's source
The script is ACE-compliant (PBTG-CJM-LM-VERIFY-RECEIPT-v1.0.0). Read it before running. It will not connect to any network unless --fetch is passed.

Sovereign Public Key

Ed25519: ...

Domain separator: GENESIS-MEMORY-RECEIPT-v1|

Public API Endpoints

GET   /api/memory/health

GET   /api/memory/v1/memory/manifest

GET   /api/memory/v1/memory/pubkey

GET   /api/memory/v1/memory/verify/{content_commitment}

POST /api/memory/v1/memory/visitor/issue

POST /api/memory/v1/memory/store    requires X-Genesis-Session

POST /api/memory/v1/memory/recall   requires X-Genesis-Session

POST /api/memory/v1/memory/forget   requires X-Genesis-Session