From 2b189bf55383033e476810bfa7461af001da7907 Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Fri, 26 Jan 2024 11:50:37 -0600 Subject: [PATCH] v19 alpha3 --- uni-6/12_V19_BETA_3_UPGRADE.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 uni-6/12_V19_BETA_3_UPGRADE.md diff --git a/uni-6/12_V19_BETA_3_UPGRADE.md b/uni-6/12_V19_BETA_3_UPGRADE.md new file mode 100644 index 0000000..33a1f64 --- /dev/null +++ b/uni-6/12_V19_BETA_3_UPGRADE.md @@ -0,0 +1,29 @@ +# Uni v19 Beta 3 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.3). + +The Upgrade is scheduled for block `7492708`, which should be about _1600 UTC on Monday 29th Jan_. [Here's a countdown](https://testnet.mintscan.io/juno-testnet/blocks/7492708). + +As always, for unattended updates, [Cosmovisor is your friend](https://docs.cosmos.network/main/build/tooling/cosmovisor). + +## Installation + +```bash +* Go Version 1.21+ is required + +# get the new version +git fetch --tags && git checkout v19.0.0-alpha.3 +make build && make install + +junod version --long | grep "cosmos_sdk_version\|commit\|version:" +# commit: 46bc071f91225d2dcf06897d7b71f668f5508087 +# cosmos_sdk_version: v0.47.6 +# version: v19.0.0-alpha.3 + +# if you are using cosmovisor you then need to make a new dir and copy this new binary +mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v1900alpha3/bin +cp $HOME/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/v1900alpha3/bin + +# find out what version you are about to run - should be the same as the tag +$DAEMON_HOME/cosmovisor/upgrades/v1900alpha3/bin/junod version +```