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

sync: master to develop #424

Merged
merged 5 commits into from
Apr 8, 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
3 changes: 3 additions & 0 deletions types/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,7 @@ const (

// Serengeti is the upgrade name for Serengeti upgrade
Serengeti = "Serengeti"

// Erdos is the upgrade name for Erdos upgrade
Erdos = "Erdos"
)
11 changes: 11 additions & 0 deletions x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ const (

// Serengeti is the upgrade name for Serengeti upgrade
Serengeti = types.Serengeti

// Erdos is the upgrade name for Erdos upgrade
Erdos = types.Erdos
)

// The default upgrade config for networks
Expand Down Expand Up @@ -65,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 @@ -96,6 +103,10 @@ var (
Name: Pawnee,
Height: 6623127,
Info: "Pawnee hardfork",
}).SetPlan(&Plan{
Name: Serengeti,
Height: 7354695,
Info: "Serengeti hardfork",
})
)

Expand Down
Loading