Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/asone/b39wc
- Owner: Asone
- Created: 2021-09-09T07:16:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-18T05:22:05.000Z (over 2 years ago)
- Last Synced: 2024-10-06T03:58:16.359Z (3 months ago)
- Topics: bip39, bitcoin, mnemonic
- Language: Rust
- Homepage:
- Size: 200 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 CheckerThe 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 informationOPTIONS:
-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
````