Skip to content

Commit

Permalink
Create upgrade-v0.17.0.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
molla202 authored Nov 25, 2023
1 parent 1331cd7 commit f758591
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Elys/upgrade-v0.17.0.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Upgrade height:

### Manuel upgrade
```
cd $HOME/elys
git fetch --all
git checkout v0.16.0
make build
sudo mv $HOME/elys/build/elysd $(which elysd)
sudo systemctl restart elysd && sudo journalctl -u elysd -fo cat
```
### Oto upgrade

```
curl -sSL https://raw.githubusercontent.com/Core-Node-Team/Testnet-TR/main/Elys/upgrade-v0.16.0.sh | bash
```

### Cosmovisor Upgrade
```
cd $HOME
rm -rf elys
git clone https://github.com/elys-network/elys.git
cd elys
git checkout v0.16.0
```
```
make build
```
```
mkdir -p $HOME/.elys/cosmovisor/upgrades/v0.16.0/bin
mv build/elysd $HOME/.elys/cosmovisor/upgrades/v0.16.0/bin/
rm -rf build
```

0 comments on commit f758591

Please sign in to comment.