Skip to content

Commit

Permalink
chore: add KromaMPTTime to mainnet (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pangssu authored Jan 24, 2025
1 parent d3cbfba commit b26f731
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,4 @@ require (

replace github.com/ethereum-optimism/optimism v1.7.2 => ./

replace github.com/ethereum/go-ethereum v1.13.8 => github.com/kroma-network/go-ethereum v0.6.0
replace github.com/ethereum/go-ethereum v1.13.8 => github.com/kroma-network/go-ethereum v0.6.1
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ github.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kroma-network/go-ethereum v0.6.0 h1:XCV4jDcvgyewpPlhiHXMx6mifLCxJtH3zcBPia11K88=
github.com/kroma-network/go-ethereum v0.6.0/go.mod h1:ZG4M8oph2j0C+R6CtUXuHeeUk5TuN5hVyl9gfwZawJg=
github.com/kroma-network/go-ethereum v0.6.1 h1:04XgtYznMEL9wKrTtXLB2gGEgXpjYdSOAxNjalkCer0=
github.com/kroma-network/go-ethereum v0.6.1/go.mod h1:ZG4M8oph2j0C+R6CtUXuHeeUk5TuN5hVyl9gfwZawJg=
github.com/kroma-network/zktrie v0.5.1-0.20230420142222-950ce7a8ce84 h1:VpLCQx+tFV6Nk0hbs3Noyxma/q9wIDdyacKpGQWUMI8=
github.com/kroma-network/zktrie v0.5.1-0.20230420142222-950ce7a8ce84/go.mod h1:w54LrYo5rJEV503BgMPRNONsLTOEQv5V87q+uYaw9sM=
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
Expand Down
2 changes: 1 addition & 1 deletion op-node/chaincfg/chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var Mainnet = &rollup.Config{
CanyonTime: u64Ptr(1708502400),
DeltaTime: u64Ptr(1709107200),
EcotoneTime: u64Ptr(1714032001),
KromaMPTTime: nil,
KromaMPTTime: u64Ptr(1739250001),
FjordTime: nil,
InteropTime: nil,
/* [Kroma: START]
Expand Down
2 changes: 1 addition & 1 deletion op-node/chaincfg/chains_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ var mainnetCfg = rollup.Config{
CanyonTime: u64Ptr(1708502400),
DeltaTime: u64Ptr(1709107200),
EcotoneTime: u64Ptr(1714032001),
KromaMPTTime: nil,
KromaMPTTime: u64Ptr(1739250001),
FjordTime: nil,
InteropTime: nil,
/* [Kroma: START]
Expand Down
8 changes: 4 additions & 4 deletions ops-devnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ volumes:

services:
create-beacon-chain-genesis:
image: "gcr.io/prysmaticlabs/prysm/cmd/prysmctl:latest"
image: "gcr.io/prysmaticlabs/prysm/cmd/prysmctl:v5.0.4"
command:
- testnet
- generate-genesis
Expand All @@ -30,7 +30,7 @@ services:
- "${PWD}/prysm-config.yml:/config.yml"

beacon-chain:
image: "gcr.io/prysmaticlabs/prysm/beacon-chain:latest"
image: "gcr.io/prysmaticlabs/prysm/beacon-chain:v5.0.4"
command:
- --datadir=/db/beacondata
- --min-sync-peers=0
Expand Down Expand Up @@ -108,7 +108,7 @@ services:

l2:
pid: host # allow debugging
image: kromanetwork/geth:v0.6.0
image: kromanetwork/geth:v0.6.1
ports:
- "9545:8545"
- "9546:8546"
Expand All @@ -128,7 +128,7 @@ services:

l2-historical:
pid: host # allow debugging
image: kromanetwork/geth:v0.6.0
image: kromanetwork/geth:v0.6.1
ports:
- "9445:8545"
- "9446:8546"
Expand Down

0 comments on commit b26f731

Please sign in to comment.