Skip to content

Commit

Permalink
Update release version to v1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominator008 committed Jan 7, 2022
1 parent 927d23b commit 126b82c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/aws_kms.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ signer_passphrase = "<api-key>:<api-secret>"
You will need the signer address for various operations. Download and install the `aws-kms-tools` binary:

```sh
curl -L https://github.com/celer-network/sgn-v2-networks/releases/download/v1.4.6/aws-kms-tools-linux-amd64.tar.gz | tar -xz
curl -L https://github.com/celer-network/sgn-v2-networks/releases/download/v1.4.7/aws-kms-tools-linux-amd64.tar.gz | tar -xz
mv aws-kms-tools $GOBIN
```

Expand Down
17 changes: 13 additions & 4 deletions docs/validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ groups and a keypair that you have access to.
sudo snap install go --classic
```

Install gcc, make and libleveldb-dev
Install gcc and make :

```sh
sudo apt update && sudo apt install gcc make libleveldb-dev
sudo apt update && sudo apt install gcc make
```

(Optional) If you are on Ubuntu and choose to use cleveldb, which is reported to be more performant, install libleveldb-dev:

```sh
sudo apt install libleveldb-dev
```

3. Set \$GOBIN and add \$GOBIN to \$PATH. Edit `$HOME/.profile` and add:
Expand Down Expand Up @@ -58,7 +64,8 @@ groups and a keypair that you have access to.
1. From the `/home/ubuntu` directory, download and install the `sgnd` binary:

```sh
curl -L https://github.com/celer-network/sgn-v2-networks/releases/download/v1.4.6/sgnd-v1.4.6-linux-amd64.tar.gz | tar -xz
curl -L https://github.com/celer-network/sgn-v2-networks/releases/download/v1.4.7/sgnd-v1.4.7-goleveldb-linux-amd64.tar.gz | tar -xz
# To use with cleveldb on Ubuntu, download https://github.com/celer-network/sgn-v2-networks/releases/download/v1.4.7/sgnd-v1.4.7-ubuntu-cleveldb-linux-amd64.tar.gz
mv sgnd $GOBIN
```

Expand Down Expand Up @@ -92,7 +99,9 @@ groups and a keypair that you have access to.
Backup the generated Tendermint key files `$HOME/.sgnd/config/node_key.json` and `$HOME/.sgnd/config/priv_validator_key.json` securely. Make sure the keys are **never** committed to any repo.

5. Fill out the `moniker` field in `config/config.toml` with your `node-name`.
Fill out the `external_address` field with `<public-ip:26656>`, where the `public-ip` is the public IP of the EC2 machine hosting the node. Currently, the Celer foundation nodes restrict the access to port 26656, so please **report your public IP to the Celer team** to get whitelisted.
Fill out the `external_address` field with `<public-ip:26656>`, where the `public-ip` is the public IP of the EC2 machine hosting the node.
If using cleveldb, change the `db_backend` field to `"cleveldb"`.
Currently, the Celer foundation nodes restrict the access to port 26656, so please **report your public IP to the Celer team** to get whitelisted.

6. Add a Cosmos SDK / Tendermint validator account:

Expand Down
2 changes: 1 addition & 1 deletion sgn-partnernet-1000/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fast_sync = true
# * badgerdb (uses github.com/dgraph-io/badger)
# - EXPERIMENTAL
# - use badgerdb build tag (go build -tags badgerdb)
db_backend = "cleveldb"
db_backend = "goleveldb"

# Database directory
db_dir = "data"
Expand Down

0 comments on commit 126b82c

Please sign in to comment.