1 2 3 4 5 6 7 8 9 10 11 12 13
pub mod error; pub mod wallet; /// Helper `Result` structure for wallet crate. pub type Result<T> = std::result::Result<T, error::WalletError>; pub use error::WalletError; pub mod hd_wallet; pub mod keystore; mod hash;