Skip to content

Commit a607490

Browse files
committed
doc: add v0.5.3 changelog
1 parent 78cfaea commit a607490

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## v0.5.3
4+
5+
This release introduces the implementation of [BEP-543](https://github.com/bnb-chain/BEPs/blob/master/BEPs/BEP-543.md), effectively reducing the block time from 1 second to an impressive 500 milliseconds.
6+
This enhancement significantly improves transaction efficiency and overall network performance, allowing for faster processing and a more seamless experience for users.
7+
8+
It is set to be activated on both the opBNB Mainnet and Testnet environments according to the following schedule:
9+
10+
- Testnet: Apr-02-2025 11:00 AM +UTC
11+
- Mainnet: Apr-15-2025 11:00 AM +UTC
12+
13+
All mainnet and testnet nodes must upgrade to this release before the hardfork time.
14+
Also note that the `op-geth` should be upgraded to v0.5.7 accordingly, check [this](https://github.com/bnb-chain/op-geth/releases/tag/v0.5.7) for more details.
15+
16+
### What's Changed
17+
18+
* feat: BEP-543 to shorten block interval by @2020xibao, @joeylichang, @VM @flywukong in https://github.com/bnb-chain/opbnb/pull/265
19+
20+
### Docker Images
21+
22+
- ghcr.io/bnb-chain/op-node:v0.5.3
23+
- ghcr.io/bnb-chain/op-batcher:v0.5.3
24+
- ghcr.io/bnb-chain/op-proposer:v0.5.3
25+
26+
**Full Changelog**: https://github.com/bnb-chain/opbnb/compare/v0.5.2...v0.5.3
27+
328
## v0.5.2
429

530
This is a minor release and must upgrade to this release before the Pascal & Prague hardforks time of BSC, supports EIP-7702.

op-node/chaincfg/chains.go

+3
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ var OPBNBMainnet = rollup.Config{
143143
DeltaTime: u64Ptr(1718871000), // Jun-20-2024 08:10 AM +UTC
144144
EcotoneTime: u64Ptr(1718871600), // Jun-20-2024 08:20 AM +UTC
145145
FjordTime: u64Ptr(1727157600), // Sep-24-2024 06:00 AM +UTC
146+
VoltaTime: u64Ptr(1744686000), // Apr-15-2025 11:00 AM +UTC
146147
}
147148

148149
var OPBNBTestnet = rollup.Config{
@@ -179,6 +180,7 @@ var OPBNBTestnet = rollup.Config{
179180
DeltaTime: u64Ptr(1715754000), // May-15-2024 06:20 AM +UTC
180181
EcotoneTime: u64Ptr(1715754600), // May-15-2024 06:30 AM +UTC
181182
FjordTime: u64Ptr(1725948000), // Sep-10-2024 06:00 AM +UTC
183+
VoltaTime: u64Ptr(1743562800), // Apr-02-2025 11:00 AM +UTC
182184
}
183185

184186
var OPBNBQANet = rollup.Config{
@@ -215,6 +217,7 @@ var OPBNBQANet = rollup.Config{
215217
DeltaTime: u64Ptr(0),
216218
EcotoneTime: u64Ptr(0),
217219
FjordTime: u64Ptr(1724392800), // AUG-23-2024 06:00 AM +UTC
220+
VoltaTime: u64Ptr(1743562800), // Apr-02-2025 11:00 AM +UTC
218221
}
219222

220223
func u64Ptr(v uint64) *uint64 {

0 commit comments

Comments
 (0)