Beispiel #1
0
 public HDWallet(string words, string seedPassword, CoinPath path) : base(words, seedPassword, path)
 {
 }
Beispiel #2
0
        public HDWalletSecpBase(string words, string seedPassword, CoinPath path) : base(words, seedPassword)
        {
            var masterKeyPath = new KeyPath(path.ToString());

            _masterKey = new ExtKey(base.BIP39Seed).Derive(masterKeyPath);
        }
Beispiel #3
0
 public HDWallet(string seed, CoinPath path) : base(seed, path)
 {
 }
Beispiel #4
0
        public HDWallet(string seed, CoinPath path) : base(seed)
        {
            var masterKeyPath = new KeyPath(path.ToString());

            _masterKey = new ExtKey(base.BIP39Seed).Derive(masterKeyPath);
        }
Beispiel #5
0
        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 words, string seedPassword, CoinPath path) : this(words, seedPassword, path.ToString())
 {
 }
 protected HdWalletEd25519(string seed, CoinPath path) : this(seed, path.ToString())
 {
 }