use std::result;
use ex3_node_error::Error;
pub use bip::bip44;
pub type Result<T> = result::Result<T, Error>;
mod bip;
#[cfg(feature = "secp256k1")]
pub mod secp256k1;
#[cfg(feature = "util")]
pub mod address;
mod error;
#[cfg(feature = "util")]
pub mod hash;
#[cfg(feature = "util")]
pub mod verify;