rustywallet-address 0.3.0

Cryptocurrency address generation and validation for Bitcoin and Ethereum
Documentation
1
2
3
4
5
6
7
8
9
//! Encoding utilities for address generation.

pub mod base58;
pub mod bech32;
pub mod hex;

pub use base58::Base58Check;
pub use bech32::Bech32Encoder;
pub use hex::HexEncoder;