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

v23 upgrade instructions #107

Merged
merged 1 commit into from
Jul 16, 2024
Merged
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
27 changes: 27 additions & 0 deletions juno-1/3000_v23_UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Juno v23 - Upgrade

Additional links:

- [Proposal #347](https://www.mintscan.io/juno/proposals/352).
- [The v23.0.0 changelog is viewable here](https://github.com/CosmosContracts/juno/releases/tag/v23.0.0).

The target block for this upgrade is [18032000](https://www.mintscan.io/juno/blocks/18032000), which is expected to arrive on _Thursday July 18th, 2024 at 13:56:47 + 00:00 UTC

These are the instructions you will need if you run cosmovisor:

```bash
cd juno
git fetch --tags && git checkout v23.0.0
make build && make install

junod version --long | grep "cosmos_sdk_version\|commit\|version:"
# commit: bf140aa60045ba92b83d0cb7f3bc47a2661a4e7e
# cosmos_sdk_version: v0.47.12
# version: v23.0.0

mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v23/bin && cp $HOME/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/v23/bin

$DAEMON_HOME/cosmovisor/upgrades/v23/bin/junod version
```

Alternatively, you can run the upgrade the old-fashioned way.