From d27141a8864b16f4686d6e0399eb44e7faaa115d Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Wed, 24 May 2023 11:32:02 -0500 Subject: [PATCH 1/3] v15 instructions --- uni-6/04_V15_BETA_UPGRADE copy.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 uni-6/04_V15_BETA_UPGRADE copy.md diff --git a/uni-6/04_V15_BETA_UPGRADE copy.md b/uni-6/04_V15_BETA_UPGRADE copy.md new file mode 100644 index 0000000..917bf3b --- /dev/null +++ b/uni-6/04_V15_BETA_UPGRADE copy.md @@ -0,0 +1,27 @@ +# 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 + +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 +``` From 28a36d5d7cb7b7298174b6b16dc8eac88af1a16d Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Wed, 24 May 2023 11:34:41 -0500 Subject: [PATCH 2/3] rename file --- uni-6/{04_V15_BETA_UPGRADE copy.md => 04_V15_BETA_UPGRADE.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename uni-6/{04_V15_BETA_UPGRADE copy.md => 04_V15_BETA_UPGRADE.md} (100%) diff --git a/uni-6/04_V15_BETA_UPGRADE copy.md b/uni-6/04_V15_BETA_UPGRADE.md similarity index 100% rename from uni-6/04_V15_BETA_UPGRADE copy.md rename to uni-6/04_V15_BETA_UPGRADE.md From bc3891ebf64956789e138f1c586b277154e6c826 Mon Sep 17 00:00:00 2001 From: Reece Williams <31943163+Reecepbcups@users.noreply.github.com> Date: Fri, 26 May 2023 09:58:04 -0500 Subject: [PATCH 3/3] Add rm -rf $HOME/.juno/data/wasm/cache/ --- uni-6/04_V15_BETA_UPGRADE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uni-6/04_V15_BETA_UPGRADE.md b/uni-6/04_V15_BETA_UPGRADE.md index 917bf3b..c356349 100644 --- a/uni-6/04_V15_BETA_UPGRADE.md +++ b/uni-6/04_V15_BETA_UPGRADE.md @@ -13,6 +13,8 @@ As always, for unattended updates, [Cosmovisor is your friend](https://docs.juno 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