Skip to main content

Uptick Upgrade

Upgrade to v0.3.1

Manual upgrade

Loading data...
cd $HOME && rm -rf uptick && \
git clone https://github.com/UptickNetwork/uptick.git uptick && cd uptick && \
git fetch --tags && \
git checkout v0.3.1 && \
make build && \
sudo mv build/uptickd $(which uptickd) && \
sudo service uptick restart && \
sudo journalctl -fu uptick -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 uptick && \
git clone https://github.com/UptickNetwork/uptick.git uptick && cd uptick && \
git fetch --tags && \
git checkout v0.3.1 && \
make build && \
mkdir -p $HOME/.uptickd/cosmovisor/upgrades/v0.3.1/bin && \
mv build/uptickd $HOME/.uptickd/cosmovisor/upgrades/v0.3.1/bin/
**Note:** if you see this in your node’s logs:UPGRADE "v0.3.1" NEEDED at height: 16722530then force Cosmovisor to point at the new upgrade directory:
cd "$HOME/.uptickd/cosmovisor" && ln -sfn "upgrades/v0.3.1" current && ls -l current
This tells Cosmovisor to use the v0.3.1 binary as the “current” release so it won’t error on startup.