Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature(op-geth): update qanet config #138

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var (

OPBNBMainNetGenesisHash = common.HexToHash("0x4dd61178c8b0f01670c231597e7bcb368e84545acd46d940a896d6a791dd6df4")
OPBNBTestNetGenesisHash = common.HexToHash("0x51fa57729dfb1c27542c21b06cb72a0459c57440ceb43a465dae1307cd04fe80")
OPBNBQANetGenesisHash = common.HexToHash("0xe182e685b1ec05ca55f2374cb3a190d1ae8f3e196acb55a69efd61536fc3983f")
OPBNBQANetGenesisHash = common.HexToHash("0x73eaf214333f29eed23c4902fdc17889b3e379372e52a42567d0069e1b10cdb0")
)

const (
Expand Down Expand Up @@ -246,7 +246,7 @@ var (
}
// OPBNBQANetConfig is the chain parameters to run a node on the opBNB qa network. It is just for internal test.
OPBNBQANetConfig = &ChainConfig{
ChainID: big.NewInt(7180),
ChainID: big.NewInt(1081),
HomesteadBlock: big.NewInt(0),
EIP150Block: big.NewInt(0),
EIP155Block: big.NewInt(0),
Expand All @@ -271,13 +271,15 @@ var (
EIP1559DenominatorCanyon: 8,
},
Fermat: big.NewInt(0),
ShanghaiTime: newUint64(1714993800), // May-06-2024 11:10 AM +UTC
CanyonTime: newUint64(1714993800), // May-06-2024 11:10 AM +UTC
ShanghaiTime: newUint64(0),
CanyonTime: newUint64(0),
// Delta: the Delta upgrade does not affect the execution-layer, and is thus not configurable in the chain config.
CancunTime: newUint64(1714995000), // May-06-2024 11:30 AM +UTC
EcotoneTime: newUint64(1714995000), // May-06-2024 11:30 AM +UTC
HaberTime: newUint64(1716361200), // May-22-2024 07:00 AM +UTC
WrightTime: newUint64(1721815200), // July-24-2024 10:00 AM +UTC
CancunTime: newUint64(0),
EcotoneTime: newUint64(0),
HaberTime: newUint64(0),
WrightTime: newUint64(0),
// TODO update FjordTime
// FjordTime: nil,
}

// AllEthashProtocolChanges contains every protocol change (EIPs) introduced
Expand Down
Loading