Skip to main content

Upgrade

Network upgrade procedures for DoraFactory.

🔄 Live Upgrade Information

Current Version:unknown

Check Current Version

curl -s https://t-dora-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 dorad 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 dorad

# Backup current binary
cp $(which dorad) $HOME/.dora/dorad.backup

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

# Verify new version
dorad version

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