rustywallet-hd 0.2.0

BIP32/BIP44/BIP85 Hierarchical Deterministic wallet for cryptocurrency key derivation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Convenient re-exports for common usage.
//!
//! ```
//! use rustywallet_hd::prelude::*;
//! ```

pub use crate::error::HdError;
pub use crate::extended_key::{ExtendedPrivateKey, ExtendedPublicKey};
pub use crate::network::Network;
pub use crate::path::{ChildNumber, DerivationPath};
pub use crate::bip85::{Bip85, derive_bip85_mnemonic, derive_bip85_master};