AtomOne Upgrade
Upgrade to v3.3.0
Manual upgrade
Loading data...
cd $HOME && rm -rf atomone && \
git clone https://github.com/atomone-hub/atomone atomone && cd atomone && \
git fetch --tags && \
git checkout v3.3.0 && \
make build && \
sudo mv build/atomoned $(which atomoned) && \
sudo service atomone restart && \
sudo journalctl -fu atomone -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 atomone && \
git clone https://github.com/atomone-hub/atomone atomone && cd atomone && \
git fetch --tags && \
git checkout v3.3.0 && \
make build && \
mkdir -p $HOME/.atomone/cosmovisor/upgrades/v3/bin && \
mv build/atomoned $HOME/.atomone/cosmovisor/upgrades/v3/bin/
UPGRADE "v3" NEEDED at height: 5902000then force Cosmovisor to point at the new upgrade directory:cd "$HOME/.atomone/cosmovisor" && ln -sfn "upgrades/v3" current && ls -l current
v3.3.0 binary as the “current” release so it won’t error on startup.