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

Properties

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