@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
12 lines • 465 B
TypeScript
import { Mnemonic } from '../mnemonics';
import { SeedOptionsInterface } from '../interfaces';
export declare class Seed {
protected seed: string;
protected options: SeedOptionsInterface;
constructor(seed: string, options?: SeedOptionsInterface);
static getName(): string;
getName(): string;
getSeed(): string;
static fromMnemonic(mnemonic: string | Mnemonic, options?: SeedOptionsInterface): string;
}
//# sourceMappingURL=seed.d.ts.map