Ejemplo n.º 1
0
        public ExtPubKey Derive(KeyPath derivation)
        {
            ExtPubKey result = this;

            return(derivation.Indexes.Aggregate(result, (current, index) => current.Derive(index)));
        }
Ejemplo n.º 2
0
 public bool IsParentOf(ExtPubKey childKey)
 {
     return(childKey.IsChildOf(this));
 }