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

    Interface Ids

    Mints unique identifiers, one namespace per entity kind (see IdPrefix). An id must never repeat within its prefix: minted ids become row keys, and txn_ ids are hashed into the tamper-evident chain. The runtime default appends a crypto.randomUUID() to the prefix.

    interface Ids {
        next(prefix: IdPrefix): string;
    }
    Index