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

    Interface Clock

    The core's single time source: due times, expiries, maturity, and rate lookups all read it, so a fixed test clock makes every sweep deterministic. Store-side age gauges (e.g. OutboxStore.stats) deliberately use the store's own time base instead.

    interface Clock {
        now(): number;
    }
    Index
    • Milliseconds since the Unix epoch.

      Returns number