#mnemonic #bip-39 #bitcoin #crypto

no-std bip0039

Another Rust implementation of BIP-0039 standard

10 releases (6 breaking)

0.12.0 Feb 19, 2024
0.11.0 Nov 22, 2022
0.10.1 Dec 14, 2021
0.9.0 Aug 30, 2021
0.6.0 Jan 7, 2020

#1142 in Magic Beans

Download history 3193/week @ 2024-01-01 4981/week @ 2024-01-08 5124/week @ 2024-01-15 6638/week @ 2024-01-22 13636/week @ 2024-01-29 7416/week @ 2024-02-05 5402/week @ 2024-02-12 6396/week @ 2024-02-19 5307/week @ 2024-02-26 9086/week @ 2024-03-04 4507/week @ 2024-03-11 5481/week @ 2024-03-18 4280/week @ 2024-03-25 3576/week @ 2024-04-01 4737/week @ 2024-04-08 5357/week @ 2024-04-15

18,170 downloads per month
Used in 23 crates (5 directly)

MIT/Apache

320KB
12K SLoC

bip0039

gha-svg crates-svg docs-svg msrv-svg

Another Rust implementation of BIP-0039 standard.

Usage

Generate a random BIP-0039 mnemonic in English.

use bip0039::{Count, English, Mnemonic};

// Generates an English mnemonic with 12 words randomly
let mnemonic = <Mnemonic<English>>::generate(Count::Words12);
// Or use the default generic type (English) of struct Mnemonic.
let mnemonic = <Mnemonic>::generate(Count::Words12);
// Gets the phrase
let phrase = mnemonic.phrase();
// Generates the HD wallet seed from the mnemonic and the passphrase.
let seed = mnemonic.to_seed("");

Documentation

See documentation and examples at https://docs.rs/bip0039.

Features

  • Support all languages in the BIP-0039 Word Lists
    • English
    • Japanese
    • Korean
    • Spanish
    • Chinese (Simplified)
    • Chinese (Traditional)
    • French
    • Italian
    • Czech
    • Portuguese
  • Support no_std environment

Alternatives

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.3–1.8MB
~58K SLoC