Bip32RootKey

Trait Bip32RootKey 

Source
pub trait Bip32RootKey {
    type Err;

    // Required methods
    fn to_bip32_root_key(
        &self,
        network: Network,
    ) -> Result<ExtendedPrivKey, Self::Err>;
    fn fingerprint(&self, network: Network) -> Result<Fingerprint, Self::Err>;
}

Required Associated Types§

Required Methods§

Source

fn to_bip32_root_key( &self, network: Network, ) -> Result<ExtendedPrivKey, Self::Err>

Source

fn fingerprint(&self, network: Network) -> Result<Fingerprint, Self::Err>

Implementors§