interface UseCreateIdentityResult {
    status: IdentityFlowStatus;
    seedWords: null | string[];
    identity: null | Identity;
    error: null | string;
    generate: ((opts?: {
        strength?: SeedStrength;
    }) => void);
    confirmWords: (() => Promise<void>);
    reset: (() => void);
    fail: ((message: string) => void);
}

Properties

seedWords: null | string[]
identity: null | Identity
error: null | string
generate: ((opts?: {
    strength?: SeedStrength;
}) => void)
confirmWords: (() => Promise<void>)
reset: (() => void)
fail: ((message: string) => void)