From 5a113b4782339b1346e9a04d2781a4c63be7f9cb Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Wed, 17 Jan 2024 09:18:29 -0600 Subject: [PATCH] v19 instructions --- uni-6/11_V19_BETA_UPGRADE.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 uni-6/11_V19_BETA_UPGRADE.md diff --git a/uni-6/11_V19_BETA_UPGRADE.md b/uni-6/11_V19_BETA_UPGRADE.md new file mode 100644 index 0000000..bfcd740 --- /dev/null +++ b/uni-6/11_V19_BETA_UPGRADE.md @@ -0,0 +1,27 @@ +# Uni v19 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/v19.0.0-alpha.1). + +The Upgrade is scheduled for block `7194366`, which should be about _1700 UTC on Friday 19th Jan_. [Here's a countdown](https://testnet.mintscan.io/juno-testnet/blocks/7194366). + +As always, for unattended updates, [Cosmovisor is your friend](https://docs.cosmos.network/main/build/tooling/cosmovisor). + +## Installation + +```bash +# get the new version +git fetch --tags && git checkout v19.0.0-alpha.1 +make build && make install + +junod version --long | grep "cosmos_sdk_version\|commit\|version:" +# commit: 55ec22a51f95f773f91ab06e2a64b305728ef35b +# cosmos_sdk_version: v0.47.6 +# version: v19.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/v19/bin +cp $HOME/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/v19/bin + +# find out what version you are about to run - should be the same as the tag +$DAEMON_HOME/cosmovisor/upgrades/v19/bin/junod version +```