pub trait ToPublicKey: MiniscriptKey {
    fn to_public_key(&self) -> PublicKey;
fn hash_to_hash160(hash: &<Self as MiniscriptKey>::Hash) -> Hash; fn to_x_only_pubkey(&self) -> XOnlyPublicKey { ... } }
Expand description

Trait describing public key types which can be converted to bitcoin pubkeys

Required methods

Converts an object to a public key

Converts a hashed version of the public key to a hash160 hash.

This method must be consistent with to_public_key, in the sense that calling MiniscriptKey::to_pubkeyhash followed by this function should give the same result as calling to_public_key and hashing the result directly.

Provided methods

Convert an object to x-only pubkey

Implementations on Foreign Types

Implementors