Skip to main content

Upgrade

Network upgrade procedures for Atomone.

🔄 Live Upgrade Information

Current Version:unknown

Check Current Version

curl -s https://t-atomone-rpc.ruangnode.com:443/abci_info | jq -r '.result.response.version'
🔄 Checking versions...

Important Notes

⚠️ Before upgrading:

  • Always backup your current binary
  • Check for any breaking changes in release notes
  • Ensure you have enough disk space

After upgrading:

  • Verify the new version with atomoned version
  • Monitor logs for any errors
  • Check node sync status

Manual Upgrade (Alternative)

If you prefer manual upgrade without the live component:

# Stop service
sudo systemctl stop atomoned

# Backup current binary
cp $(which atomoned) $HOME/.atomone/atomoned.backup

# Build new version
cd ~/atomone
git pull
git checkout <NEW_VERSION>
make build
sudo mv $HOME/atomone/build/atomoned $(which atomoned)

# Verify new version
atomoned version

# Start service
sudo systemctl restart atomoned && sudo journalctl -u atomoned -f