wagyu-model 0.6.3

A generic model for cryptocurrency wallets
Documentation
//! # Model
//!
//! A model for cryptocurrency wallets.
#![warn(unused_extern_crates)]
#![forbid(unsafe_code)]

#[macro_use]
extern crate failure;

pub mod address;
pub use self::address::*;

pub mod amount;
pub use self::amount::*;

pub mod derivation_path;
pub use self::derivation_path::*;

pub mod extended_private_key;
pub use self::extended_private_key::*;

pub mod extended_public_key;
pub use self::extended_public_key::*;

pub mod format;
pub use self::format::*;

pub mod mnemonic;
pub use self::mnemonic::*;

pub mod network;
pub use self::network::*;

pub mod private_key;
pub use self::private_key::*;

pub mod public_key;
pub use self::public_key::*;

pub mod transaction;
pub use self::transaction::*;

pub mod utilities;
pub use self::utilities::*;

pub mod wordlist;
pub use self::wordlist::*;