@blockchaincommons/xid - v1.0.0-beta.3
    Preparing search index...

    Interface XIDGenesis

    The genesis provenance mark of a new document: exactly one of a passphrase or a 32-byte seed (a ProvenanceSeed or its bytes), the resolution ("high" unless given), the date (now unless given) and the mark's info.

    interface XIDGenesis {
        passphrase?: string;
        seed?: Uint8Array<ArrayBufferLike> | ProvenanceSeed;
        resolution?: ProvenanceMarkResolution;
        date?: DateInput;
        info?: Cbor;
    }
    Index
    passphrase?: string

    The passphrase the chain's seed derives from.

    seed?: Uint8Array<ArrayBufferLike> | ProvenanceSeed

    The chain's seed: a ProvenanceSeed or exactly 32 bytes.

    resolution?: ProvenanceMarkResolution

    The chain's resolution; "high" unless given.

    date?: DateInput

    The genesis mark's date, a Date or a CborDate; now unless given.

    info?: Cbor

    The genesis mark's info.