Exemplo n.º 1
0
 public HDWallet(string words, string seedPassword, CoinPath path) : base(words, seedPassword, path)
 {
 }
Exemplo n.º 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);
        }
Exemplo n.º 3
0
 public HDWallet(string seed, CoinPath path) : base(seed, path)
 {
 }
Exemplo n.º 4
0
        public HDWallet(string seed, CoinPath path) : base(seed)
        {
            var masterKeyPath = new KeyPath(path.ToString());

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