Skip to content

Commit

Permalink
Update unichain-sepolia for Holocene (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
trianglesphere authored Dec 3, 2024
1 parent d9a8e3a commit f7d1dbf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .env.sepolia
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ OP_NODE_L1_ETH_RPC=https://rpc.sepolia.org
# [required] replace with your preferred L1 CL beacon endpoint:
OP_NODE_L1_BEACON=https://your.sepolia.beacon.node/endpoint-here

OP_NODE_ROLLUP_CONFIG=/chainconfig/sepolia/rollup.json
OP_NODE_NETWORK=unichain-sepolia
OP_NODE_L2_ENGINE_AUTH=/shared/jwt.hex
OP_NODE_L2_ENGINE_RPC=ws://execution-client:8551
OP_NODE_LOG_LEVEL=info
Expand Down Expand Up @@ -35,7 +35,7 @@ OP_NODE_SYNCMODE=execution-layer

# op-geth configuration

GENESIS_FILE=/chainconfig/sepolia/genesis-l2.json
GETH_OP_NETWORK=unichain-sepolia
GETH_ROLLUP_SEQUENCERHTTP=https://sepolia-sequencer.unichain.org
GETH_BOOTNODES=enode://9e138a8ec4291c4f2fe5851aaee44fc73ae67da87fb26b75e3b94183c7ffc15b2795afc816b0aa084151b95b3a3553f1cd0d1e9dd134dcf059a84d4e0b429afc@3.146.117.118:30303,enode://34d87d649e5c58a17a43c1d59900a2020bd82d5b12ea39467c3366bee2946aaa9c759c77ede61089624691291fb2129eeb2a47687b50e2463188c78e1f738cf2@52.15.54.8:30303,enode://c2405194166fe2c0e6c61ee469745fed1a6802f51c8fc39e1c78c21c9a6a15a7c55304f09ee37e430da9a1ce8117ca085263c6b0f474f6946811e398347611ef@3.146.213.65:30303
GETH_LOG_FORMAT=logfmt
Expand Down
1 change: 1 addition & 0 deletions chainconfig/sepolia/genesis-l2.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"ecotoneTime": 0,
"fjordTime": 0,
"graniteTime": 0,
"holoceneTime": 1734559200,
"terminalTotalDifficulty": 0,
"terminalTotalDifficultyPassed": true,
"optimism": {
Expand Down
1 change: 1 addition & 0 deletions chainconfig/sepolia/rollup.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"ecotone_time": 0,
"fjord_time": 0,
"granite_time": 0,
"holocene_time": 1734559200,
"batch_inbox_address": "0xff00000000000000000000000000000000001301",
"deposit_contract_address": "0x0d83dab629f0e0f9d36c0cbc89b69a489f0751bd",
"l1_system_config_address": "0xaee94b9ab7752d3f7704bde212c0c6a0b701571d",
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ volumes:

services:
execution-client:
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:v1.101408.0
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:v1.101411.3
env_file:
- .env
- .env.sepolia
Expand All @@ -25,7 +25,7 @@ services:
entrypoint: /entrypoint.sh

op-node:
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:v1.9.1
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node:v1.10.1
env_file:
- .env
- .env.sepolia
Expand Down
2 changes: 1 addition & 1 deletion op-geth-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -euxo pipefail

if [ -n "$GENESIS_FILE" ]; then
if [ -n "${GENESIS_FILE-}" ]; then
geth init "$GENESIS_FILE"
fi

Expand Down

0 comments on commit f7d1dbf

Please sign in to comment.