v0.7.1

Chain ID: kaiyo-1

The upgrade is scheduled for 5196234.

Cosmovisor Method

Build the new binary verison

cd kujira
git pull
git checkout v0.7.1
make install

Check the version

# The correct version should be 0.7.1
kujirad version
# Should be: d56e24ace683a7c5deec5a32d66b1848adf7d253
kujirad version --long | grep commit

Make new Cosmovisor directory and copy binary

mkdir -p $HOME/.kujira/cosmovisor/upgrades/v0.7.1/bin
cp $HOME/go/bin/kujirad $HOME/.kujira/cosmovisor/upgrades/v0.7.1/bin

Verify the Cosmovisor upgrade version

# The correct version should be 0.7.1
$HOME/.kujira/cosmovisor/upgrades/v0.7.1/bin/kujirad version

Binary (Manual) Method

Build the new binary verison

cd kujira
git pull
git checkout v0.7.1
make build

Set Halt Height

sed -i.bak 's/halt-height = 0/halt-height = 5196234/' $HOME/.kujira/config/app.toml

Then, wait until the upgrade time. At the upgrade time, move to the next section.

Replace the binaries

cp $HOME/kujira/build/kujirad $(which kujirad)

Reset the Halt Height

sed -i.bak 's/halt-height = 5196234/halt-height = 0/' $HOME/.kujira/config/app.toml

Restart The Node

# Replace kujirad.service with whatever your service file is called
sudo systemctl restart kujirad.service

Last updated