Skip to main content

Initia Upgrade

Upgrade to v1.1.4

Manual upgrade

Loading data...
cd $HOME && rm -rf initia && \
git clone https://github.com/initia-labs/initia.git initia && cd initia && \
git fetch --tags && \
git checkout v1.1.4 && \
make build && \
sudo mv build/initiad $(which initiad) && \
sudo service initia restart && \
sudo journalctl -fu initia -o cat

Cosmovisor upgrade

Note

Choose this method only if you're using Cosmovisor to manage binaries and automate chain upgrades.

cd $HOME && rm -rf initia && \
git clone https://github.com/initia-labs/initia.git initia && cd initia && \
git fetch --tags && \
git checkout v1.1.4 && \
make build && \
mkdir -p $HOME/.initia/cosmovisor/upgrades/v1.1.4/bin && \
mv build/initiad $HOME/.initia/cosmovisor/upgrades/v1.1.4/bin/

Note: if you see this in your node’s logs: UPGRADE "v1.1.4" NEEDED at height: 3400000 then force Cosmovisor to point at the new upgrade directory:

cd "$HOME/.initia/cosmovisor" && ln -sfn "upgrades/v1.1.4" current && ls -l current

This tells Cosmovisor to use the v1.1.4 binary as the “current” release so it won’t error on startup.