Blockchain Commons XID TypeScript Library - v1.0.0-alpha.13
    Preparing search index...

    Type Alias XIDGenesisMarkOptions

    XIDGenesisMarkOptions:
        | { type: "none" }
        | {
            type: "passphrase";
            passphrase: string;
            resolution?: ProvenanceMarkResolution;
            date?: Date;
            info?: Cbor;
        }
        | {
            type: "seed";
            seed: Uint8Array;
            resolution?: ProvenanceMarkResolution;
            date?: Date;
            info?: Cbor;
        }

    Options for creating the genesis mark.