コード例 #1
0
ファイル: HDWallet.cs プロジェクト: farukterzioglu/HDWallet
 public HDWallet(string words, string seedPassword, CoinPath path) : base(words, seedPassword, path)
 {
 }
コード例 #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);
        }
コード例 #3
0
ファイル: HDWallet.cs プロジェクト: farukterzioglu/HDWallet
 public HDWallet(string seed, CoinPath path) : base(seed, path)
 {
 }
コード例 #4
0
ファイル: HDWallet.cs プロジェクト: TurgutKanceltik/HDWallet
        public HDWallet(string seed, CoinPath path) : base(seed)
        {
            var masterKeyPath = new KeyPath(path.ToString());

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