Skip to content

Commit f7d1dbf

Browse files
Update unichain-sepolia for Holocene (#17)
1 parent d9a8e3a commit f7d1dbf

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Diff for: .env.sepolia

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OP_NODE_L1_ETH_RPC=https://rpc.sepolia.org
66
# [required] replace with your preferred L1 CL beacon endpoint:
77
OP_NODE_L1_BEACON=https://your.sepolia.beacon.node/endpoint-here
88

9-
OP_NODE_ROLLUP_CONFIG=/chainconfig/sepolia/rollup.json
9+
OP_NODE_NETWORK=unichain-sepolia
1010
OP_NODE_L2_ENGINE_AUTH=/shared/jwt.hex
1111
OP_NODE_L2_ENGINE_RPC=ws://execution-client:8551
1212
OP_NODE_LOG_LEVEL=info
@@ -35,7 +35,7 @@ OP_NODE_SYNCMODE=execution-layer
3535

3636
# op-geth configuration
3737

38-
GENESIS_FILE=/chainconfig/sepolia/genesis-l2.json
38+
GETH_OP_NETWORK=unichain-sepolia
3939
GETH_ROLLUP_SEQUENCERHTTP=https://sepolia-sequencer.unichain.org
4040
GETH_BOOTNODES=enode://9e138a8ec4291c4f2fe5851aaee44fc73ae67da87fb26b75e3b94183c7ffc15b2795afc816b0aa084151b95b3a3553f1cd0d1e9dd134dcf059a84d4e0b429afc@3.146.117.118:30303,enode://34d87d649e5c58a17a43c1d59900a2020bd82d5b12ea39467c3366bee2946aaa9c759c77ede61089624691291fb2129eeb2a47687b50e2463188c78e1f738cf2@52.15.54.8:30303,enode://c2405194166fe2c0e6c61ee469745fed1a6802f51c8fc39e1c78c21c9a6a15a7c55304f09ee37e430da9a1ce8117ca085263c6b0f474f6946811e398347611ef@3.146.213.65:30303
4141
GETH_LOG_FORMAT=logfmt

Diff for: chainconfig/sepolia/genesis-l2.json

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"ecotoneTime": 0,
2424
"fjordTime": 0,
2525
"graniteTime": 0,
26+
"holoceneTime": 1734559200,
2627
"terminalTotalDifficulty": 0,
2728
"terminalTotalDifficultyPassed": true,
2829
"optimism": {

Diff for: chainconfig/sepolia/rollup.json

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"ecotone_time": 0,
2929
"fjord_time": 0,
3030
"granite_time": 0,
31+
"holocene_time": 1734559200,
3132
"batch_inbox_address": "0xff00000000000000000000000000000000001301",
3233
"deposit_contract_address": "0x0d83dab629f0e0f9d36c0cbc89b69a489f0751bd",
3334
"l1_system_config_address": "0xaee94b9ab7752d3f7704bde212c0c6a0b701571d",

Diff for: docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ volumes:
33

44
services:
55
execution-client:
6-
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:v1.101408.0
6+
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:v1.101411.3
77
env_file:
88
- .env
99
- .env.sepolia
@@ -25,7 +25,7 @@ services:
2525
entrypoint: /entrypoint.sh
2626

2727
op-node:
28-
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:v1.9.1
28+
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:v1.10.1
2929
env_file:
3030
- .env
3131
- .env.sepolia

Diff for: op-geth-entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -euxo pipefail
33

4-
if [ -n "$GENESIS_FILE" ]; then
4+
if [ -n "${GENESIS_FILE-}" ]; then
55
geth init "$GENESIS_FILE"
66
fi
77

0 commit comments

Comments
 (0)