v0.8.4

Chain ID: kaiyo-1

The upgrade is scheduled for 9226200.

Cosmovisor Method

Build the new binary verison

cd kujira
git pull
git checkout v0.8.4
make install

Check the version

# The correct version should be 0.8.4
kujirad version
# Should be: 408d9d8200f82349428bfb77dc01c7b4caa040fc
kujirad version --long | grep commit

Make new Cosmovisor directory and copy binary

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

Verify the Cosmovisor upgrade version

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

Binary (Manual) Method

Build the new binary verison

cd kujira
git pull
git checkout v0.8.4
make build

Set Halt Height

sed -i.bak 's/halt-height = 0/halt-height = 9226200/' $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 = 9226200/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