//! 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 use deso_signing_error as DesoSigningError;
pub use from_mnemonic_error as FromMnemonicError;