pub trait ElectrumExtendedKey {
    // Required methods
    fn to_descriptors(&self) -> Vec<String>;
    fn xkey_str(&self) -> String;
    fn kind(&self) -> &str;
}

Required Methods§

source

fn to_descriptors(&self) -> Vec<String>

Returns internal and external descriptor

source

fn xkey_str(&self) -> String

Returns the bitcoin extended key (xpub or xprv) as String

source

fn kind(&self) -> &str

Returns the kind of script

Implementors§