Skip to content

Commit

Permalink
Fixed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
njmurarka committed Dec 22, 2020
1 parent a88ed9b commit a68277f
Showing 1 changed file with 12 additions and 20 deletions.
32 changes: 12 additions & 20 deletions public-validator-+-sentry/buildvalidatorsentry.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,30 +311,22 @@ For the following instructions, we will describe the steps to setup a validator

24. ONLY do this step if you are following the **REHEARSAL** PATH.

**MAIN NET**:
```text
curl http://client.sentry.bluzellenet.bluzelle.com:26657/genesis | jq -C '.result.genesis' | more -r
```
Export your existing validator's operator wallet from the existing validator machine and import it to the new validator machine. We will assume that the existing wallet account is called `vuser` and will call the new imported wallet account the same name.

**TEST NET**:
```text
curl http://client.sentry.testnet.public.bluzelle.com:26657/genesis | jq -C '.result.genesis' | more -r
i. On the existing validator machine:

```

A convenient example to download it to the current folder from our sentry nodes:

**MAIN NET**:
```text
curl http://client.sentry.bluzellenet.bluzelle.com:26657/genesis | jq '.result.genesis' > genesis.json
blzcli keys export vuser
```

**TEST NET**:
```text
curl http://client.sentry.testnet.public.bluzelle.com:26657/genesis | jq '.result.genesis' > genesis.json

Note that the `passphrase to encrypt the exported key` that you provide is required when you import the key in the next step. Copy the output of the above command (it will display the output to your screen) and store it into a file. We will assume this file is called `export.txt`.

ii. On the new validator machine (provide the second password entered when doing the export):

```

Ensure to copy over and replace the existing genesis.json file in your "~/.blzd/config/" folder with the downloaded one from the testnet.

blzcli keys import vuser export.txt
```
Notes:

i. If you have the mnemonic handy for your original vuser, you can just add the vuser to the new validator with the following:
Expand Down

0 comments on commit a68277f

Please sign in to comment.