pub trait FromSlip132 {
    fn from_slip132_str(s: &str) -> Result<Self, Error>
    where
        Self: Sized
; }
Expand description

Trait for building standard BIP32 extended keys from SLIP132 variant.

Required Methods

Constructts standard BIP32 extended key from SLIP132 string.

Implementations on Foreign Types

Implementors