Saxonberg Server API
    Preparing search index...

    The serialized form of a credential — a plain object the wallet stores in its data.credentials array and rebuilds from on hydrate. Kind-specific fields are optional; Credential.fromData reads only the ones its kind owns.

    interface SerializedCredential {
        activeAccount?: string;
        frozen?: boolean;
        kind: CredentialKind;
        linkedAccounts?: string[];
        registered?: string[];
        spendCap?: number;
    }
    Index

    Properties

    activeAccount?: string
    frozen?: boolean
    linkedAccounts?: string[]
    registered?: string[]
    spendCap?: number