interface SeedPhraseVerifyProps {
    realWords: string[];
    gridSize?: number;
    wordlist?: readonly string[];
    onVerified: (() => void);
    onFailed?: ((attempts: number) => void);
}

Properties

realWords: string[]
gridSize?: number
wordlist?: readonly string[]
onVerified: (() => void)
onFailed?: ((attempts: number) => void)