2020-02-12 19:15:40 +00:00
|
|
|
# Description
|
|
|
|
|
2020-02-22 00:05:18 +00:00
|
|
|
This is a tiny utility for converting a Status V1 seed phrase into a private key.
|
2020-02-12 19:15:40 +00:00
|
|
|
|
|
|
|
I created it so I could use my normal Status account with the [status-console-client](https://github.com/status-im/status-console-client).
|
|
|
|
|
2020-02-22 00:05:18 +00:00
|
|
|
It is written in [GoLang](https://golang.org/), and requires the [Go compiler](https://golang.org/dl/).
|
|
|
|
|
2020-02-12 19:15:40 +00:00
|
|
|
# Usage
|
|
|
|
|
2020-02-22 00:05:18 +00:00
|
|
|
The utility receives the seed phrase via standard input:
|
2020-02-12 19:15:40 +00:00
|
|
|
```bash
|
|
|
|
$ echo "this is my secret seed phrase" | go run main.go
|
|
|
|
0x334d5305f760c5767e25fd23480a46790ba9c6cc3519196a96675259515128fa
|
|
|
|
```
|
|
|
|
|
2020-02-22 00:05:18 +00:00
|
|
|
# WARNING
|
2020-02-12 19:15:40 +00:00
|
|
|
|
2020-02-22 00:05:18 +00:00
|
|
|
You might want to avoid using `echo` to not store your seed phrase in shell history.
|