-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from Reecepbcups/reece/v14
Reece/v14
- Loading branch information
Showing
1 changed file
with
33 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,33 @@ | ||
# Juno v14 - Aurora Upgrade | ||
|
||
Additional links: | ||
|
||
- [Proposal #282](https://www.mintscan.io/juno/proposals/282). | ||
- [The v14.0.0 changelog is viewable here](https://github.com/CosmosContracts/juno/releases/tag/v14.0.0). | ||
- [Features article](https://medium.com/@JunoNetwork/jun%C3%B8-aurora-ac67a8143e22). | ||
|
||
The target block for this upgrade is [7875721](https://www.mintscan.io/juno/blocks/7875721), which is expected to arrive on _Mon April 17th 2023, at 1700UTC_, +/- 1 hour. | ||
|
||
These are the instructions you will need if you run cosmovisor: | ||
|
||
**Important! app.toml change** | ||
The following config change is required for nodes & validators: | ||
```toml | ||
minimum-gas-prices = "0ujuno" | ||
``` | ||
|
||
With this, relayers can now also set their hermes, rly, and TS relayer configs to 0ujuno gas price cost. | ||
|
||
```bash | ||
cd juno | ||
git fetch --tags && git checkout v14.0.0 | ||
make build && make install | ||
# this will return commit cd0e46c3e590a0416465a6f6054b8ba71327608a | ||
junod version --long | ||
|
||
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v14/bin && cp $HOME/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/v14/bin | ||
# this will return v14.0.0 | ||
$DAEMON_HOME/cosmovisor/upgrades/v14/bin/junod version | ||
``` | ||
|
||
Alternatively, you can run the upgrade the old-fashioned way. |