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