Skip to content

Commit

Permalink
v18
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Oct 24, 2023
1 parent 9638e2b commit 314f7d1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions uni-6/07_V18_BETA_UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Uni v18 (epona) Beta Upgrade

More info on the changes in this proposed release can be found [on the release page](https://github.com/CosmosContracts/juno/releases/tag/v18.0.0-alpha.1).

The Upgrade is scheduled for block `4665656`, which should be about _1600 UTC on Friday 27th Oct_. [Here's a countdown](https://testnet.mintscan.io/juno-testnet/blocks/4665656).

As always, for unattended updates, [Cosmovisor is your friend](https://docs.junochain.com/validators/setting-up-cosmovisor).

## Installation

```bash
# get the new version
git fetch --tags && git checkout v18.0.0-alpha.1
make build && make install

junod version --long | grep "cosmos_sdk_version\|commit\|version:"
# commit: 7c6745080a0fa56bd175bbc42ee07e841205a463
# cosmos_sdk_version: v0.47.5
# version: v18.0.0-alpha.1

# if you are using cosmovisor you then need to make a new dir and copy this new binary
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v18/bin
cp $HOME/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/v18/bin

# find out what version you are about to run - should be the same as the tag
$DAEMON_HOME/cosmovisor/upgrades/v18/bin/junod version
```

0 comments on commit 314f7d1

Please sign in to comment.