Upgrade

Current Version
Upgrade Folder

v2.0.0

v2.0.0

This guide assumes that the current systemd file is named as kyve

Downloading and installing Binary

sudo systemctl stop kyve
cd $HOME
git clone https://github.com/KYVENetwork/chain
mv chain kyve 
cd kyve
git pull
git checkout v2.0.0
make install

sudo systemctl start kyve

For Cosmovisor Users

# Downloading and installing Binary
cd $HOME
git clone https://github.com/KYVENetwork/chain
mv chain kyve
cd kyve
git pull
git checkout v2.0.0
make install

# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.kyvechain/cosmovisor/upgrades/v2.0.0/bin
sudo cp $HOME/go/bin/kyvechaind $HOME/.kyvechain/cosmovisor/upgrades/v2.0.0/bin/

#Stop kyve daemon
sudo systemctl stop kyve

#creating symlink to new binaries
ls -l $HOME/.kyvechain/cosmovisor/current
rm $HOME/.kyvechain/cosmovisor/current
ln -s $HOME/.kyvechain/cosmovisor/upgrades/v2.0.0 $HOME/.kyvechain/cosmovisor/current

#starting kyve
sudo systemctl start kyve && sudo journalctl -u kyve -f -o cat

Last updated