UNPKG

376 BTypeScriptView Raw
1export declare function mnemonicToSeedSync(mnemonic: string, password?: string): Uint8Array;
2export declare function mnemonicToEntropy(mnemonic: string): Uint8Array;
3export declare function entropyToMnemonic(entropy: Uint8Array): string;
4export declare function generateMnemonic(strength?: number): string;
5export declare function validateMnemonic(mnemonic: string): boolean;