Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/setting-up-a-validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ cd gravity-bin

# the gravity chain binary itself

wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.1/gravity-linux-amd64
wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gravity-linux-amd64
mv gravity-linux-amd64 gravity

# Tools for the gravity bridge from the gravity repo

wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.1/gbt
wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gbt
chmod +x *
sudo mv * /usr/bin/

```

At specific points you may be told to 'update your orchestrator' or 'update your gravity binary'. In order to do that you can simply repeat the above instructions and then restart the affected software.

to check what version of the tools you have run `gbt --version` the current latest version is `gbt 1.8.1`
to check what version of the tools you have run `gbt --version` the current latest version is `gbt 1.11.1`

## Download and install geth

Expand Down
4 changes: 2 additions & 2 deletions docs/upgrading-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ cd gravity-bin

# Tools for the gravity bridge from the gravity repo

wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.7.0/gbt
wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gbt
chmod +x *
sudo mv * /usr/bin/

```

At specific points you may be told to 'update your orchestrator'. In order to do that you can simply repeat the above instructions and then restart the affected software.

to check what version of the tools you have run `gbt --version` the current latest version is `gbt 1.7.0`
to check what version of the tools you have run `gbt --version` the current latest version is `gbt 1.11.1`

gbt will start, print a few messages about resyncing and startup, and then be silent. If you see any messages with the `warn` or `error` log level read them and follow the provided instructions quickly. As a validator you may be slashed if your orchestrator fails to provide signatures for more than 10,000 blocks.
6 changes: 3 additions & 3 deletions docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ cd gravity-bin

# the gravity chain binary itself

wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.1/gravity-linux-amd64
wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gravity-linux-amd64
mv gravity-linux-amd64 gravity

# Tools for the gravity bridge from the gravity repo

wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.8.1/gbt
wget https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.11.1/gbt
chmod +x *
sudo mv * /usr/bin/
```
Expand All @@ -89,7 +89,7 @@ If you are validating on any of these platforms you will need to build your own
```
git clone https://github.com/Gravity-Bridge/Gravity-Bridge
cd Gravity-Bridge/module
git checkout v1.8.1
git checkout v1.11.1
make install
cp $GOPATH/bin/gravity /usr/bin/gravity
```
Expand Down