Skip to content

Instantly share code, notes, and snippets.

@ForboleDevelopment
Last active June 8, 2020 08:33
Show Gist options
  • Save ForboleDevelopment/09bb258adf9a8415f8926f5310287de1 to your computer and use it in GitHub Desktop.
Save ForboleDevelopment/09bb258adf9a8415f8926f5310287de1 to your computer and use it in GitHub Desktop.
Commands that should be run in order to update from morpheus-4001 to morpheus-5000 seamlessly
# Go into the folder where you downloaded Desmos
cd ~/desmos
# Checkout the correct Desmos tag and build the software
git fetch --tags && git checkout tags/v0.6.2 && make install
# Stop the currently running node
sudo systemctl stop desmosd
# Remove the current genesis and get the new one
rm ~/.desmosd/config/genesis.json
curl https://raw.githubusercontent.com/desmos-labs/morpheus/master/5000/genesis.json > ~/.desmosd/config/genesis.json
# Reset the node and start it again
desmosd unsafe-reset-all
sudo systemctl start desmosd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment