deso 0.2.1

DeSo Transaction Signing, and Other Helpful Utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Sign Transactions on the DeSo Blockchain. 
//! This crate is intended to sign transactions. 
//! 
//! This crate does NOT submit anything to DeSo at this time, and re-exports functionality from the base58check-encode crate.
//! 

pub use hex;
pub use base58check_encode as b58c;
pub mod seed_hex;

pub mod errors;
pub use errors::deso_signing_error as DesoSigningError;
pub use errors::from_mnemonic_error as FromMnemonicError;

#[cfg(test)]
mod tests;