Exemple #1
0
 public BitcoinExtKey Derive(uint index)
 {
     return(new BitcoinExtKey(ExtKey.Derive(index), Network));
 }
Exemple #2
0
 /// <summary>
 /// Constructor. Creates a representation of an extended key, within the specified network.
 /// </summary>
 public BitcoinExtKey(ExtKey key, Network network)
     : base(key, network)
 {
 }
Exemple #3
0
 /// <summary>
 /// Gets the Base58 representation, in the same network, of the neutered extended key.
 /// </summary>
 public BitcoinExtPubKey Neuter()
 {
     return(ExtKey.Neuter().GetWif(Network));
 }