v0.8.3
Chain ID: kaiyo-1
The upgrade is scheduled for 9225000.
Cosmovisor Method
Build the new binary verison
cd kujira
git pull
git checkout v0.8.3
make install
Check the version
# The correct version should be 0.8.3
kujirad version
# Should be: 2c1ee82c63f42cce6090c11b31906a4930d08408
kujirad version --long | grep commit
Make new Cosmovisor directory and copy binary
mkdir -p $HOME/.kujira/cosmovisor/upgrades/v0.8.3/bin
cp $HOME/go/bin/kujirad $HOME/.kujira/cosmovisor/upgrades/v0.8.3/bin
Verify the Cosmovisor upgrade version
# The correct version should be 0.8.3
$HOME/.kujira/cosmovisor/upgrades/v0.8.3/bin/kujirad version
Binary (Manual) Method
Build the new binary verison
cd kujira
git pull
git checkout v0.8.3
make build
Set Halt Height
sed -i.bak 's/halt-height = 0/halt-height = 9225000/' $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 = 9225000/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