1 2 3 4 5 6 7 8 9 10 11
/// The bip39 crate is heavily inspired by and reuses code from
/// [Wagyu](https://github.com/AleoHQ/wagyu) under the [MIT](http://opensource.org/licenses/MIT)
/// license. The difference being, the underlying extended private keys are generated using the
/// [bip32](https://github.com/summa-tx/bitcoins-rs/tree/main/bip32) crate, that depends on
/// [k256](https://docs.rs/k256/0.10.0/k256/index.html) instead of
/// [libsecp256k1](https://docs.rs/libsecp256k1/0.3.5/secp256k1/).
pub mod mnemonic;
pub use self::mnemonic::*;
pub mod wordlist;
pub use self::wordlist::*;