Skip to content

Commit

Permalink
add forkheight and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-reorg committed Oct 26, 2023
1 parent 3b52848 commit 9f4762c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
## v0.2.0

This is a hardfork release for the opBNB Testnet called Fermat.
It will be activated at block height #TBD, expected to occur at #TBD.
It will be activated at block height #13063094, expected to occur on November 14, 2023, at 6 AM UTC.

### User Facing Changes

- Two new precompiled contracts have been introduced: blsSignatureVerify and cometBFTLightBlockValidate. The purpose of blsSignatureVerify is to verify BLS signatures in smart contracts, while cometBFTLightBlockValidate is designed to validate cometBFT light blocks. Although these contracts were primarily introduced to facilitate cross-chain communication between opBNB and Greenfield, they can also be utilized for other purposes. For instance, blsSignatureVerify can be employed to verify BLS signatures in smart contracts, and cometBFTLightBlockValidate can facilitate cross-chain communication with other blockchains based on the cosmos framework.(#7)
- The rollup configuration for opBNB Mainnet and Testnet has been added to the code. You can now use the `--network=opBNBTestnet` or `--network=opBNBMainnet` flag instead of `--rollup.config=./rollup.json` to specify the rollup configuration for the op-node. (#7)
- Enable the layer 2 sync mechanism for opBNB by using the flag `--syncmode=snap` or `--syncmode=full` to choose the sync mode. Make sure to enable the `l2.engine-sync=true` flag on the op-node. (#8)

### Partial Changelog
Expand Down
3 changes: 1 addition & 2 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,7 @@ var (
EIP1559Denominator: 8,
},
PreContractForkBlock: big.NewInt(5805494),
// TODO change block number
Fermat: nil,
Fermat: big.NewInt(13063000), // Nov-14-2023 06 AM +UTC
}

OPBNBDevNetConfig = &ChainConfig{
Expand Down

0 comments on commit 9f4762c

Please sign in to comment.