-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tidying variable order and adding README
- Loading branch information
Showing
2 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Dero Wallet Generator | ||
|
||
This application will allow you to supply a suffix and generate wallet keys until a | ||
matching suffix is located. Once you've located the keys a seed output will be presented | ||
which can be used to restore your wallet in the official wallet client. | ||
|
||
The process of searching for a wallet suffix is similar to mining where more complex | ||
suffixes will require more time to search for. Simple 4 letter words with non-repeating | ||
characters tend to have the best luck. | ||
|
||
Speaking of luck, feel free to donate if you enjoy the use of this software :) | ||
|
||
``` | ||
dero1qyxg6dmw22xh9v0hkp3xm6cns6qn9cwl9zp25mxxwmy7mvdea7akyqgetluck | ||
``` | ||
|
||
# Usage | ||
```shell | ||
Generate Dero Wallet with matching suffix | ||
|
||
Usage: | ||
dero-wallet-gen --suffix=<suffix> | ||
dero-wallet-gen -h | --help | ||
|
||
Options: | ||
-h --help Show this screen. | ||
--suffix=<suffix> Search for wallet with this string suffix | ||
|
||
Example: ./dero-wallet-gen --suffix getluck | ||
``` | ||
|
||
# Building | ||
|
||
Local OS and architecture | ||
```shell | ||
go build . | ||
``` | ||
Multiple Targets | ||
```shell | ||
./build.sh <version> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters