Skip to content

Commit

Permalink
Merge pull request #451 from bnb-chain/develop
Browse files Browse the repository at this point in the history
release: sync develop to master
  • Loading branch information
unclezoro authored Jun 11, 2024
2 parents b0a354b + 729b8f1 commit eef3f5c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## V1.8.0
This release introduces the Veld upgrade

## V1.7.0
This release introduces the Erdos upgrade

Expand Down
3 changes: 3 additions & 0 deletions types/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ const (

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

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

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

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

// The default upgrade config for networks
Expand Down Expand Up @@ -76,6 +79,10 @@ var (
Name: Erdos,
Height: 7861456,
Info: "Erdos hardfork",
}).SetPlan(&Plan{
Name: Veld,
Height: 9269910,
Info: "Veld hardfork",
})

TestnetChainID = "greenfield_5600-1"
Expand Down Expand Up @@ -115,6 +122,10 @@ var (
Name: Erdos,
Height: 8116724,
Info: "Erdos hardfork",
}).SetPlan(&Plan{
Name: Veld,
Height: 9581218,
Info: "Veld hardfork",
})
)

Expand Down

0 comments on commit eef3f5c

Please sign in to comment.