interface UseImportSeedResult {
    status: IdentityFlowStatus;
    identity: any;
    error: null | string;
    importWords: ((words: string[], passphrase?: string) => Promise<void>);
    reset: (() => void);
}

Properties

identity: any
error: null | string
importWords: ((words: string[], passphrase?: string) => Promise<void>)
reset: (() => void)