Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valerio-vaccaro/rust-vanitymnem
Mnemonic utilities in Rust.
https://github.com/valerio-vaccaro/rust-vanitymnem
bitcoin liquid mnemonic
Last synced: 2 days ago
JSON representation
Mnemonic utilities in Rust.
- Host: GitHub
- URL: https://github.com/valerio-vaccaro/rust-vanitymnem
- Owner: valerio-vaccaro
- License: mit
- Created: 2021-05-30T14:38:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-18T16:49:07.000Z (9 months ago)
- Last Synced: 2024-02-18T17:39:39.133Z (9 months ago)
- Topics: bitcoin, liquid, mnemonic
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mnemonic utilities in Rus
## Vanitymnem
Create a valid Bitcoin mnemonic with a vanity address in a specific derivation.
```
'##::::'##::::'###::::'##::: ##:'####:'########:'##:::'##:'##::::'##:'##::: ##:'########:'##::::'##:
##:::: ##:::'## ##::: ###:: ##:. ##::... ##..::. ##:'##:: ###::'###: ###:: ##: ##.....:: ###::'###:
##:::: ##::'##:. ##:: ####: ##:: ##::::: ##:::::. ####::: ####'####: ####: ##: ##::::::: ####'####:
##:::: ##:'##:::. ##: ## ## ##:: ##::::: ##::::::. ##:::: ## ### ##: ## ## ##: ######::: ## ### ##:
. ##:: ##:: #########: ##. ####:: ##::::: ##::::::: ##:::: ##. #: ##: ##. ####: ##...:::: ##. #: ##:
:. ## ##::: ##.... ##: ##:. ###:: ##::::: ##::::::: ##:::: ##:.:: ##: ##:. ###: ##::::::: ##:.:: ##:
::. ###:::: ##:::: ##: ##::. ##:'####:::: ##::::::: ##:::: ##:::: ##: ##::. ##: ########: ##:::: ##:
:::...:::::..:::::..::..::::..::....:::::..::::::::..:::::..:::::..::..::::..::........::..:::::..::
VanityMnem - create your vanity mnemonics - 2020/2021 Valerio Vaccaro
https://github.com/valerio-vaccaro/rust-vanitymnem
VanityMnem 0.0.1Valerio Vaccaro
Create a valid Bitcoin mnemonic with a vanity address in a specific derivation.USAGE:
vanitymnem [FLAGS] [OPTIONS] --patternFLAGS:
-h, --help Prints help information
-t, --twelve Create a twelve words mnemonic (default is twenty-four words mnemonic)
-V, --version Prints version informationOPTIONS:
Native_segwit, nested_segwit or legacy (default=native_segwit)
-a, --address
-c, --children Check children derivations from 0 to this value (default=100).
-d, --derivation Base derivation (default=m/84'/0'/0')
-n, --network main, test (default=test)
-p, --pattern Regex for pattern
```
[VanityMnem documentation](https://github.com/valerio-vaccaro/rust-vanitymnem/blob/main/VANITYMNEM.md)## Derive
Create addresses an public/private keys from a valid menmonic.
```
::::::::::::::::::::::::::::::::'########::'########:'########::'####:'##::::'##:'########:::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::: ##.... ##: ##.....:: ##.... ##:. ##:: ##:::: ##: ##.....::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::: ##:::: ##: ##::::::: ##:::: ##:: ##:: ##:::: ##: ##:::::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::: ##:::: ##: ######::: ########::: ##:: ##:::: ##: ######:::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::: ##:::: ##: ##...:::: ##.. ##:::: ##::. ##:: ##:: ##...::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::: ##:::: ##: ##::::::: ##::. ##::: ##:::. ## ##::: ##:::::::::::::::::::::::::::::::::::::::
:::::::::::::::::::::::::::::::: ########:: ########: ##:::. ##:'####:::. ###:::: ########:::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::........:::........::..:::::..::....:::::...:::::........::::::::::::::::::::::::::::::::::
:::::::::::::::: Derive - derive address from your mnemonics - 2021 Valerio Vaccaro ::::::::::::::::
:::::::::::::::: https://github.com/valerio-vaccaro/rust-vanitymnem ::::::::::::::::
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::derive 0.0.1
Valerio VaccaroUSAGE:
derive [OPTIONS]FLAGS:
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
Native_segwit, nested_segwit or legacy (default=native_segwit)
-a, --address
-c, --children Check children derivations from 0 to this value (default=100).
-d, --derivation Base derivation (default=m/84'/0'/0')
-m, --mnemonic Mnemonic
-n, --network main, test (default=test)
```
[Derive documentation](https://github.com/valerio-vaccaro/rust-vanitymnem/blob/main/DERIVE.md)## SignMessage
```
```
[SignMessage documentation](https://github.com/valerio-vaccaro/rust-vanitymnem/blob/main/SIGNMESSAGE.md)