Core wallet types for Kobe multi-chain wallet CLI.
This crate provides the unified [Wallet] type that holds a BIP39 mnemonic
and derives seeds for multiple cryptocurrencies.
Example
use Wallet;
// Generate a new wallet
let wallet = generate?;
// Or with a passphrase (BIP39 optional password)
let wallet = generate?;
// The same mnemonic can derive addresses for any coin
let seed = wallet.seed;
# Ok::