Saxonberg Server API
    Preparing search index...

    The conservation audit — the reconciliation invariant. Top-down minted supply must equal bottom-up (Σ account balances + Σ circulating coins, the coins outside bank vaults). cashInExistence = supply − accountTotal is the cash-in-hand figure even though cash transactions are off-ledger.

    interface ReconcileResult {
        accountTotal: number;
        balanced: boolean;
        cashInExistence: number;
        circulatingCoin: number;
        supply: number;
    }
    Index

    Properties

    accountTotal: number

    Σ of every materialized account balance.

    balanced: boolean

    Whether supply === accountTotal + circulatingCoin.

    cashInExistence: number

    supply − accountTotal — cash in existence (held outside accounts).

    circulatingCoin: number

    Σ face value of coins NOT resting in a bank vault.

    supply: number

    Σ mints − Σ drains over the central-bank log.