TAKESHI
  • ⚙️Supported chains
  • MAINNET
    • Althea
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • Dymension
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • BeeZee
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Konstellation
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Chain4Energy
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • Gravity Bridge
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Kichain
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Provenance
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Osmosis
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Pylons
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Quicksilver
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Composable
      • Installation
      • Upgrade
      • State sync
      • Useful commands
  • TESTNET
    • Warden
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • Archway
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • Composable
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • Hypersign
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Dymension
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Quicksilver
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Lava
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Nibiru
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Elys
      • Installation
      • Upgrade
      • State sync
      • Useful commands
    • Ojo
      • Installation
      • Upgrade
      • State sync
      • Useful commands
Powered by GitBook
On this page
  1. TESTNET
  2. Elys

Upgrade

Prepare for and the upcomming chain upgrade using Cosmovisor.

PreviousInstallationNextState sync

Last updated 1 year ago

Chain ID: elystestnet-1 | Latest Version Tag: v0.7.0 | Custom Port: 153

Since we are using Cosmovisor, it makes it very easy to prepare for upcomming upgrade. You just have to build new binaries and move it into cosmovisor upgrades directory.

Download and build upgrade binaries

# Clone project repository
cd $HOME
rm -rf elys
git clone https://github.com/elys-network/elys.git
cd elys
git checkout v0.7.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.elys/cosmovisor/upgrades/v0.7.0/bin
mv build/elysd $HOME/.elys/cosmovisor/upgrades/v0.7.0/bin/
rm -rf build

Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!