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