/** * @fileoverview Provides functions for creating seeds from mnemonic sentences. * @author Jacob V. B. Haap * @license MIT */ /** * Create a seed from a mnemonic sentence (synchronous). * @example * const ms: string = "draw kite fog system improve calm smoke economy cake head figure drastic"; * const seed = msToSeed(ms); // Uint8Array(64) [253, 45, 107, 175...] */ export declare function msToSeed(ms: string, passphrase?: string): Uint8Array; /** * Create a seed from a mnemonic sentence (asynchronous). * @example * const ms: string = "draw kite fog system improve calm smoke economy cake head figure drastic"; * const seed = await msToSeedAsync(ms); // Uint8Array(64) [253, 45, 107, 175...] */ export declare function msToSeedAsync(ms: string, passphrase?: string): Promise; //# sourceMappingURL=seed.d.ts.map