@pwngh/economy-lab
    Preparing search index...

    Interface Anchor

    Publishes a sealed checkpoint to a store outside the ledger's own database — an external log, object store, or transparency service. The checkpoint table lives in the same database an attacker who can rewrite the ledger controls, so only an externally anchored root proves history against that attacker. Best-effort: the seal logs a failed publish and never blocks on it.

    interface Anchor {
        publish(checkpoint: Checkpoint, options?: CallOptions): Promise<void>;
    }
    Index