public HDWalletSecpBase(string words, string seedPassword, CoinPath path) : base(words, seedPassword) { var masterKeyPath = new KeyPath(path.ToString()); _masterKey = new ExtKey(base.BIP39Seed).Derive(masterKeyPath); }
public HDWallet(string seed, CoinPath path) : base(seed) { var masterKeyPath = new KeyPath(path.ToString()); _masterKey = new ExtKey(base.BIP39Seed).Derive(masterKeyPath); }
protected HdWalletEd25519(string words, string seedPassword, CoinPath path) : this(words, seedPassword, path.ToString()) { }
public HDWallet(string words, string seedPassword, CoinPath path, IAddressGenerator addressGenerator) : base(words, seedPassword, addressGenerator) { var masterKeyPath = new KeyPath(path.ToString()); _masterKey = new ExtKey(BIP39Seed).Derive(masterKeyPath); }
protected HdWalletEd25519(string seed, CoinPath path) : this(seed, path.ToString()) { }