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

feat: set up Serengeti upgrade for Mainnet and Testnet #423

Merged
merged 1 commit into from
Apr 7, 2024
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## V1.6.0
This release introduces the Serengeti upgrade.

Features:
* [#400](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/400) feat: add upgrade Serengeti


## V1.5.0
This release introduces the Pawnee upgrade.

Features:
* [#396](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/396) feat: introduce Pawnee upgrade

BUGFIX
* [#401](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/401) fix: sync failed from genesis


## V1.4.0
This release introduces the Ural upgrade.

Expand Down
8 changes: 8 additions & 0 deletions x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ var (
Name: Pawnee,
Height: 6239520,
Info: "Pawnee hardfork",
}).SetPlan(&Plan{
Name: Serengeti,
Height: 6863285,
Info: "Serengeti hardfork",
})

TestnetChainID = "greenfield_5600-1"
Expand Down Expand Up @@ -99,6 +103,10 @@ var (
Name: Pawnee,
Height: 6623127,
Info: "Pawnee hardfork",
}).SetPlan(&Plan{
Name: Serengeti,
Height: 7354695,
Info: "Serengeti hardfork",
})
)

Expand Down
Loading