Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/asone/b39wc

A simple bip-39 mnemonic words checker
https://github.com/asone/b39wc

bip39 bitcoin mnemonic

Last synced: about 2 months ago
JSON representation

A simple bip-39 mnemonic words checker

Awesome Lists containing this project

README

        

![CircleCI](https://circleci.com/gh/Asone/b39wc.svg?style=svg) ![b39wc](https://github.com/Asone/b39wc/actions/workflows/rust.yml/badge.svg)
# BIP 39 Words Checker

The current project is a minimalist personal project in order to produce software learning and mastering rust.

It is basically a software to check weither the words provided in a 24 mnemonic seed are all from the official seed dictionaries provided in [bitcoin core](https://github.com/bitcoin/bips/tree/master/bip-0039).

It has no expectation to be used in production nor provide an optimal code. Only to provide a small sample of functional rust software

A few options are available :

````
USAGE:
b39wc [FLAGS] [OPTIONS] [seed]

FLAGS:
-h, --help Prints help information
-s, --skip-count Skips count of words number
-V, --version Prints version information

OPTIONS:
-d, --dictionaries Dictionaries files to use (separated with coma)

ARGS:
The 24 words for seed generation

````

Example:

````
b39wc "erupt quit sphere taxi air decade vote mixed life elevator mammal search empower rabbit barely indoor crush grid slide correct scatter deal tenant verb"
````

will return :

````
words to be searched : erupt, quit, sphere, taxi, air, decade, vote, mixed, life, elevator, mammal, search, empower, rabbit, barely, indoor, crush, grid, slide, correct, scatter, deal, tenant, verb
Provided words were all found in dictionaries
````