forked from Core-Node-Team/Testnet-TR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |