Skip to content

Commit

Permalink
Upgrade instructions v2 (#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
ba1ciu authored Nov 21, 2023
1 parent 74df5f1 commit 70ad47f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions testnets/circulus-1/v2.0.0-update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# v2.0.0 Upgrade

The upgrade is scheduled for block `2790000`, which should be about _15:00 CET on 24th November 2023_.

These instructions assume you are running Cosmovisor.
NOTE: Cosmovisor will preform a full backup unless `UNSAFE_SKIP_BACKUP=true` is set as an environment variable.

### Go version

Go version 1.20.x is required to run the upgrade.

### Build

```bash
# get the new version (run inside the repo)
git fetch origin --tags
git checkout v2.0.0-rc1
cd chain && make build && make install

# check the version - should be v2.0.0-rc1
$HOME/go/bin/empowerd version
> 2.0.0-rc1
# make a dir if you haven't
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v2/bin

# if you are using cosmovisor you then need to copy this new binary
cp /home/<your-user>/go/bin/empowerd $DAEMON_HOME/cosmovisor/upgrades/v2/bin

# find out what version you are about to run - should be v2.0.0-rc1
$DAEMON_HOME/cosmovisor/upgrades/v2/bin/empowerd version

```

0 comments on commit 70ad47f

Please sign in to comment.