@upbond/sdk
    Preparing search index...

    Interface WalletFactor

    One registered MPC key factor of the account (Web3Auth caps an account at 10). kind comes from the tssShareIndex recorded at creation (DEVICE=2, RECOVERY=3); a factor with no share description reads as 'unknown'. Public keys only — factor key material never crosses this surface.

    interface WalletFactor {
        addedAt: number | null;
        factorPubHex: string;
        isCurrentDevice: boolean;
        kind: "device" | "unknown" | "recovery";
    }
    Index
    addedAt: number | null

    Epoch milliseconds recorded at creation; null when no description exists.

    factorPubHex: string

    Compressed-SEC1 hex of the factor's public key.

    isCurrentDevice: boolean

    True when this is THIS device's sealed device factor.

    kind: "device" | "unknown" | "recovery"