-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
107195e
commit 3ba0339
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Uni v1800alpha4 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.4). | ||
|
||
The Upgrade is scheduled for block `5640033`, which should be about _1700 UTC on Wednesday 29th Nov_. [Here's a countdown](https://testnet.mintscan.io/juno-testnet/blocks/5640033). | ||
|
||
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 v18.0.0-alpha.4 | ||
make build && make install | ||
|
||
junod version --long | grep "cosmos_sdk_version\|commit\|version:" | ||
# commit: a56c4421081db13d06e12d3a1ba466ee7d8d5896 | ||
# cosmos_sdk_version: v0.47.5 | ||
# version: v18.0.0-alpha.4 | ||
|
||
# if you are using cosmovisor you then need to make a new dir and copy this new binary | ||
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v1800alpha4/bin | ||
cp $HOME/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/v1800alpha4/bin | ||
|
||
# find out what version you are about to run - should be the same as the tag | ||
$DAEMON_HOME/cosmovisor/upgrades/v1800alpha4/bin/junod version | ||
``` |