From d02a4480a2bf93273e08cc912d5e810e82db763f Mon Sep 17 00:00:00 2001 From: cby3149 Date: Tue, 7 Jan 2025 14:07:40 -0800 Subject: [PATCH] Add boba mainnet holocene hardfork --- go.mod | 2 +- go.sum | 4 ++-- params/superchain_test.go | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index fd870c0cc03..5cb311a0c66 100644 --- a/go.mod +++ b/go.mod @@ -293,4 +293,4 @@ replace github.com/anacrolix/torrent => github.com/erigontech/torrent v1.54.2-al replace github.com/ledgerwatch/erigon-lib => ./erigon-lib -replace github.com/ethereum-optimism/superchain-registry/superchain => github.com/bobanetwork/superchain-registry/superchain v0.0.0-20241205210931-5e9b6db19ee3 +replace github.com/ethereum-optimism/superchain-registry/superchain => github.com/bobanetwork/superchain-registry/superchain v0.0.0-20250107213715-cb3c5cb83e2e diff --git a/go.sum b/go.sum index 55914244e02..b6c713132c7 100644 --- a/go.sum +++ b/go.sum @@ -171,8 +171,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.12.0 h1:U/q1fAF7xXRhFCrhROzIfffYnu+dlS38vCZtmFVPHmA= github.com/bits-and-blooms/bitset v1.12.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= -github.com/bobanetwork/superchain-registry/superchain v0.0.0-20241205210931-5e9b6db19ee3 h1:keQvcCoOu9AiB0oAiA0tVW8IrFKVeXuPJPq7uBLXNfs= -github.com/bobanetwork/superchain-registry/superchain v0.0.0-20241205210931-5e9b6db19ee3/go.mod h1:9feO8jcL5OZ1tvRjEfNAHz4Aggvd6373l+ZxmZZAyZs= +github.com/bobanetwork/superchain-registry/superchain v0.0.0-20250107213715-cb3c5cb83e2e h1:4oA6AvcG16s+ZPyv7mIxk+8XYcgIbCyyXLw7e9p5NRY= +github.com/bobanetwork/superchain-registry/superchain v0.0.0-20250107213715-cb3c5cb83e2e/go.mod h1:9feO8jcL5OZ1tvRjEfNAHz4Aggvd6373l+ZxmZZAyZs= github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g= github.com/bradfitz/iter v0.0.0-20140124041915-454541ec3da2/go.mod h1:PyRFw1Lt2wKX4ZVSQ2mk+PeDa1rxyObEDlApuIsUKuo= github.com/bradfitz/iter v0.0.0-20190303215204-33e6a9893b0c/go.mod h1:PyRFw1Lt2wKX4ZVSQ2mk+PeDa1rxyObEDlApuIsUKuo= diff --git a/params/superchain_test.go b/params/superchain_test.go index def518fc740..b8e7899074a 100644 --- a/params/superchain_test.go +++ b/params/superchain_test.go @@ -50,6 +50,7 @@ var bobaMainnetCfg = hardforkConfig{ EcotoneTime: big.NewInt(1713302880), FjordTime: big.NewInt(1725951600), GraniteTime: big.NewInt(1729753200), + HoloceneTime: big.NewInt(1738785600), EIP1559Elasticity: 6, EIP1559Denominator: 50, EIP1559DenominatorCanyon: 250, @@ -113,6 +114,7 @@ var opMainnetCfg = hardforkConfig{ EcotoneTime: big.NewInt(1710374401), FjordTime: big.NewInt(1720627201), GraniteTime: big.NewInt(1726070401), + HoloceneTime: big.NewInt(1736445601), EIP1559Elasticity: 6, EIP1559Denominator: 50, EIP1559DenominatorCanyon: 250,