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