Skip to content

Commit

Permalink
feat: add opbnb mainnet Fermat fork height (ethereum-optimism#83)
Browse files Browse the repository at this point in the history
* feat: add opbnb mainnet Fermat fork height

* fix typo
  • Loading branch information
owen-reorg authored Nov 7, 2023
1 parent afa3cac commit 5ce8a9c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## v0.2.2

This is the Fermat Hardfork release for opBNB Mainnet.
It will be activated at block height 9397477, expected to occur on November 28, 2023, at 6 AM UTC.

All mainnet nodes must upgrade to this release before the hardfork.

### User Facing Changes

- Support reading private keys from AWS Secret Manager for `op-node`, `op-batcher`, and `op-proposer`. Refer to PR #72 for additional information.

### Partial Changelog

- #72: feat: support AWS key manager

### Docker Images

- ghcr.io/bnb-chain/op-node:v0.2.2
- ghcr.io/bnb-chain/op-batcher:v0.2.2
- ghcr.io/bnb-chain/op-proposer:v0.2.2

### Full Changelog

https://github.com/bnb-chain/opbnb/compare/v0.2.1...v0.2.2

## v0.2.1

This is a minor release and upgrading is optional.
Expand Down
3 changes: 1 addition & 2 deletions op-node/chaincfg/chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ var OPBNBMainnet = rollup.Config{
DepositContractAddress: common.HexToAddress("0x1876ea7702c0ad0c6a2ae6036de7733edfbca519"),
L1SystemConfigAddress: common.HexToAddress("0x7ac836148c14c74086d57f7828f2d065672db3b8"),
RegolithTime: u64Ptr(0),
// TODO update block number
Fermat: nil,
Fermat: big.NewInt(9397477), // Nov-28-2023 06 AM +UTC
}

var OPBNBTestnet = rollup.Config{
Expand Down

0 comments on commit 5ce8a9c

Please sign in to comment.