8000 release: update v4 upgrade info by fedekunze · Pull Request #590 · evmos/evmos · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

release: update v4 upgrade info #590

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

Merged
merged 3 commits into from
May 10, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## [v3.0.2] - 2022-05-10

### Bug Fixes

- (app) [\#590](https://github.com/tharsis/evmos/pull/590) Update v4 `UpgradeInfo` to [`v4.0.1`](https://github.com/tharsis/evmos/releases/tag/v4.0.1)

## [v3.0.1] - 2022-05-09

### Improvements
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v4/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package v4

const (
// UpgradeName is the shared upgrade plan name for mainnet and testnet
UpgradeName = "v4.0.0"
UpgradeName = "v4.0.1"
// MainnetUpgradeHeight defines the Evmos mainnet block height on which the upgrade will take place
MainnetUpgradeHeight = 257_850
// TestnetUpgradeHeight defines the Evmos testnet block height on which the upgrade will take place
TestnetUpgradeHeight = 1_200_000
// UpgradeInfo defines the binaries that will be used for the upgrade
UpgradeInfo = `'{"binaries":{"darwin/arm64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Darwin_arm64.tar.gz","darwin/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Darwin_x86_64.tar.gz","linux/arm64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Linux_arm64.tar.gz","linux/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Linux_x86_64.tar.gz","windows/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.0/evmos_4.0.0_Windows_x86_64.zip"}}'`
UpgradeInfo = `'{"binaries":{"darwin/arm64":"https://github.com/tharsis/evmos/releases/download/v4.0.1/evmos_4.0.1_Darwin_arm64.tar.gz","darwin/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.1/evmos_4.0.1_Darwin_x86_64.tar.gz","linux/arm64":"https://github.com/tharsis/evmos/releases/download/v4.0.1/evmos_4.0.1_Linux_arm64.tar.gz","linux/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.1/evmos_4.0.1_Linux_x86_64.tar.gz","windows/x86_64":"https://github.com/tharsis/evmos/releases/download/v4.0.1/evmos_4.0.1_Windows_x86_64.zip"}}'`

// ExpiredOsmosisClient defines the client ID of the expired Osmosis IBC client
ExpiredOsmosisClient = "07-tendermint-0"
Expand Down
0