diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e56dc357..9964f0116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.10.23 +This is the release for the Final Sunset of BNB Beacon Chain testnet. + ## v0.10.22 This is the release for the Second Sunset of BNB Beacon Chain Mainnet. diff --git a/asset/testnet/app.toml b/asset/testnet/app.toml index 50ec9d2ea..4aa08332b 100644 --- a/asset/testnet/app.toml +++ b/asset/testnet/app.toml @@ -76,8 +76,10 @@ BEP171Height = 37691120 BEP126Height = 38931600 # Block height of BEP255 upgrade BEP255Height = 41650000 +# Block height of BEP333 upgrade FirstSunsetHeight = 50121232 SecondSunsetHeight = 54554742 +FinalSunsetHeight = 56218686 [query] # ABCI query interface black list, suggested value: ["custom/gov/proposals", "custom/timelock/timelocks", "custom/atomicSwap/swapcreator", "custom/atomicSwap/swaprecipient"] diff --git a/version/version.go b/version/version.go index c424cd310..61abc8751 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( Version string ) -const NodeVersion = "v0.10.22" +const NodeVersion = "v0.10.23" func init() { Version = fmt.Sprintf("BNB Beacon Chain Release: %s;", NodeVersion)