crypto-wallet-gen 2.3.0

This is a utility to generate seed phrases and to generate crypto currency wallets from a seed phrase. This way, you only need to remember one seed phrase and can generate wallets from it for multiple currencies.
Documentation
1
2
3
4
5
6
7
8
9
10
mod bip32;
mod mnemonics;
mod seed;
mod wallets;

pub use bip32::{Bip44DerivationPath, CoinType, HDPrivKey};
pub use mnemonics::{bip39::Bip39Mnemonic, scrypt::ScryptMnemonic, Mnemonic, MnemonicFactory};
pub use seed::Seed;
pub use wallets::{bitcoin::BitcoinWallet, ethereum::EthereumWallet, monero::MoneroWallet, Wallet};
mod random;