Skip to content

Commit

Permalink
Tidying variable order and adding README
Browse files Browse the repository at this point in the history
  • Loading branch information
arodd committed Jun 29, 2022
1 parent 462a600 commit e503e1c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 2 deletions.
41 changes: 41 additions & 0 deletions README.md
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>
```
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import (
"strings"
)

var suffix string
var arguments = map[string]interface{}{}
var exit = make(chan bool)

var command_line string = `dero-wallet-gen
Generate Dero Wallet with matching suffix
Expand All @@ -25,8 +27,6 @@ Options:
Example: ./dero-wallet-gen --suffix dead
`
var suffix string
var exit = make(chan bool)

func main() {
arguments, _ = docopt.Parse(command_line, nil, true, "v0.0.1", false)
Expand Down

0 comments on commit e503e1c

Please sign in to comment.