Loading...

Injective Chain Upgrade

The upgrade is scheduled for block 114,590,000. It is estimated to take place 3 hours 42 minutes from now.


Install New Binary

cd $HOME
cd injective-core
git pull
git checkout v1.15.0
make install

Check Version

# should be v1.15.0
injectived version 

# Should be commit 013606f41
injectived version --long | grep commit 

Restart the service and check the logs

Without using Cosmovisor
sudo systemctl restart injectived
sudo journalctl -u injectived -f

Make Cosmovisor Directory and Copy Binary

mkdir -p $HOME/.injectived/cosmovisor/upgrades/v1.15.0/bin
cp $HOME/go/bin/injectived $HOME/.injectived/cosmovisor/upgrades/v1.15.0/bin

Check Version Again

# should be v1.15.0
$HOME/.injectived/cosmovisor/upgrades/v1.15.0/bin/injectived version
When upgrade block height is reached, Cosmovisor will handle it automatically.