7 stable releases

1.3.1 Feb 7, 2020
1.3.0 Jul 1, 2019
1.2.1 Oct 1, 2018
1.2.0 Sep 28, 2017
1.0.0 Mar 29, 2017

#26 in #brain

Download history 98/week @ 2024-08-30 113/week @ 2024-09-06 86/week @ 2024-09-13 166/week @ 2024-09-20 163/week @ 2024-09-27 118/week @ 2024-10-04 169/week @ 2024-10-11 220/week @ 2024-10-18 66/week @ 2024-10-25 92/week @ 2024-11-01 41/week @ 2024-11-08 63/week @ 2024-11-15 110/week @ 2024-11-22 225/week @ 2024-11-29 256/week @ 2024-12-06 271/week @ 2024-12-13

868 downloads per month
Used in sstp

GPL-3.0 license

69KB
186 lines

Wordlist

Parity Brain Wallets wordlist library

Rust Documentation

RUST

# Cargo.toml

[dependencies]
parity-wordlist = "1.3"
// main.rs

println!("Words: {}", parity_wordlist::random_phrase(12));

let phrase = "violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead";
println!("Valid: {:?}", parity_wordlist::validate_phrase(phrase, 12));

JavaScript

$ npm i @parity/wordlist --save
// main.js

import { randomPhrase, verifyPhrase } from '@parity/wordlist'

console.log(randomPhrase(12))

// This will throw if the phrase is not valid:
verifyPhrase("violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead", 12)

lib.rs:

Parity Brain Wallet Generator.

Dependencies

~1.4–2MB
~36K SLoC