From b6b894e381fa8bbf9864500654e78ca072806074 Mon Sep 17 00:00:00 2001 From: j75689 Date: Mon, 1 Apr 2024 11:29:25 +0800 Subject: [PATCH 1/2] feat: enable FirstSunset on mainnet --- asset/mainnet/app.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/asset/mainnet/app.toml b/asset/mainnet/app.toml index d802464d1..97b66e530 100644 --- a/asset/mainnet/app.toml +++ b/asset/mainnet/app.toml @@ -69,6 +69,8 @@ BEP171Height = 310182000 BEP126Height = 321213000 # Block height of BEP255 upgrade BEP255Height = 328088888 +# Block height of BEP333 upgrade +FirstSunsetHeight = 373526985 [addr] # Bech32PrefixAccAddr defines the Bech32 prefix of an account's address From 4a70a7d8fe813b6618e4497d1f5ff0b3af7a3e27 Mon Sep 17 00:00:00 2001 From: j75689 Date: Mon, 1 Apr 2024 12:42:42 +0800 Subject: [PATCH 2/2] fix: update version and change log --- CHANGELOG.md | 6 ++++++ version/version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 614a47293..58b57df63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.10.20 +This is the release for the First Sunset of BNB Beacon Chain Mainnet. + +FEATURES +* [\#1016](https://github.com/bnb-chain/node/pull/1016) [BEP] feat: enable FirstSunset on mainnet + ## v0.10.19 This is the bug-fix release for the sunset of BNB Beacon Chain. diff --git a/version/version.go b/version/version.go index 377e18b92..3c0820913 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( Version string ) -const NodeVersion = "v0.10.19" +const NodeVersion = "v0.10.20" func init() { Version = fmt.Sprintf("BNB Beacon Chain Release: %s;", NodeVersion)