v0.1.43

Chain ID: nolus-rila

The upgrade is scheduled for 1131600.

Cosmovisor Method

Build the new binary verison

cd nolus-core
git pull
git checkout v0.1.43
make install

Check the version

# The correct version should be 0.1.43
nolusd version
# Should be: 90c21c44b5a4cae64e192ae2cabdeec9edec4736
nolusd version --long | grep commit

Make new Cosmovisor directory and copy binary

mkdir -p $HOME/.nolus/cosmovisor/upgrades/v0.1.43/bin
cp $HOME/go/bin/nolusd $HOME/.nolus/cosmovisor/upgrades/v0.1.43/bin

Verify the Cosmovisor upgrade version

# The correct version should be 0.1.43
$HOME/.nolus/cosmovisor/upgrades/v0.1.43/bin/nolusd version

Binary (Manual) Method

Build the new binary verison

cd nolus-core
git pull
git checkout v0.1.43
make build

Set Halt Height

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

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

Replace the binaries

cp $HOME/nolus-core/target/release/nolusd $(which nolusd)

Reset the Halt Height

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

Restart The Node

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

Last updated