Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v15 #370

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

v15 #370

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions uni-6/04_V15_BETA_UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Uni v15 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/v15.0.0-alpha.1).

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

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 v15.0.0-alpha.1
make build && make install

rm -rf $HOME/.juno/data/wasm/cache/

junod version --long | grep "cosmos_sdk_version\|commit\|version:"
# version: v15.0.0-alpha.1
# commit: b7901a7494fe5112dfa5b0b9d5f95d2c2e60c27f
# cosmos_sdk_version: v0.45.16

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

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