fix ethermintcli->keys add algo flag defValue (#466)

* fix ethermintcli->keys add algo flag defValue

* fix documentation and scripts

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
wellplay
2020-08-25 05:06:47 -04:00
committed by GitHub
co-authored by Federico Kunze
parent d2fbeed75b
commit 98610e4999
5 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ ethermintd start
To run a node with the same key every time: replace `ethermintcli keys add $KEY` in `./init.sh` with:
```bash
echo "your mnemonic here" | ethermintcli keys add $KEY --recover --algo "eth_secp256k1"
echo "your mnemonic here" | ethermintcli keys add $KEY --recover
```
::: tip Ethermint currently only supports 24 word mnemonics.
@@ -56,7 +56,7 @@ echo "your mnemonic here" | ethermintcli keys add $KEY --recover --algo "eth_sec
You can generate a new key/mnemonic with:
```bash
ethermintcli keys add $KEY --algo "eth_secp256k1"
ethermintcli keys add $KEY
```
To export your ethermint key as an ethereum private key (for use with Metamask for example):
+2 -2
View File
@@ -57,7 +57,7 @@ minimum-gas-prices = ""
```bash
# Create a key to hold your account
ethermintcli keys add $KEY --algo "eth_secp256k1"
ethermintcli keys add $KEY
# Add that key into the genesis.app_state.accounts array in the genesis file
# NOTE: this command lets you set the number of coins. Make sure this account has some coins
@@ -268,7 +268,7 @@ Now that accounts exists, you may create new accounts and send those accounts
funds!
::: tip
**Note**: Each node's seed is located at `./build/nodeN/ethermintcli/key_seed.json` and can be restored to the CLI using the `ethermintcli keys add --restore --algo "eth_secp256k1"` command
**Note**: Each node's seed is located at `./build/nodeN/ethermintcli/key_seed.json` and can be restored to the CLI using the `ethermintcli keys add --restore` command
:::
### Special Binaries