This commit is contained in:
Sebastian
2024-10-20 04:41:03 +02:00
parent 0f31d7fd46
commit 933c5174fd
15 changed files with 15 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
FROM us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:optimism FROM public.ecr.aws/i6b2w2n6/op-geth:5.2.0
RUN apk add --no-cache jq RUN apk add --no-cache jq

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -48,10 +48,15 @@ services:
op-node: op-node:
depends_on: depends_on:
- l2 - l2
image: "public.ecr.aws/i6b2w2n6/op-node:celestia-3.0.0-dencun" image: "public.ecr.aws/i6b2w2n6/op-node:5.2.0"
stop_signal: SIGINT stop_signal: SIGINT
stop_grace_period: 30s stop_grace_period: 30s
environment: environment:
CELESTIA_LEGACY_MODE: "true"
OP_NODE_OVERRIDE_CANYON: "1726783200"
OP_NODE_OVERRIDE_DELTA: "1726783200"
OP_NODE_OVERRIDE_ECOTONE: "1726783200"
OP_NODE_L1_BEACON_IGNORE: "true"
OP_NODE_S3_BUCKET: "caldera-celestia-cache-prod" OP_NODE_S3_BUCKET: "caldera-celestia-cache-prod"
OP_NODE_NAMESPACE_ID: 866269ddf77dbc40ed9d OP_NODE_NAMESPACE_ID: 866269ddf77dbc40ed9d
# OP_NODE_DA_RPC: "http://light:26658" # OP_NODE_DA_RPC: "http://light:26658"
@@ -71,7 +76,7 @@ services:
--p2p.listen.ip=0.0.0.0 --p2p.listen.ip=0.0.0.0
--p2p.listen.tcp=9003 --p2p.listen.tcp=9003
--p2p.listen.udp=9003 --p2p.listen.udp=9003
--p2p.static=/ip4/35.82.210.70/tcp/9003/p2p/16Uiu2HAmL4fvgBQi5jcuiEYDaNcg4hpGqCmyAv4DZuSM8f2USYwQ --p2p.static=/ip4/35.82.210.70/tcp/9003/p2p/16Uiu2HAmGa9Ba4jHW8WVJTfHw2b3f2g7mNmeYtMXy6bhKiLENfcH
--snapshotlog.file=/op_log/snapshot.log --snapshotlog.file=/op_log/snapshot.log
--p2p.priv.path=/config/p2p-node-key.txt --p2p.priv.path=/config/p2p-node-key.txt
--metrics.enabled --metrics.enabled

View File

@@ -1,6 +1,8 @@
#!/bin/sh #!/bin/sh
set -exu set -exu
export GETH_OVERRIDE_CANYON="1726783200"
export GETH_OVERRIDE_ECOTONE="1726783200"
VERBOSITY=${GETH_VERBOSITY:-3} VERBOSITY=${GETH_VERBOSITY:-3}
GETH_DATA_DIR=/db GETH_DATA_DIR=/db
GETH_CHAINDATA_DIR="$GETH_DATA_DIR/geth/chaindata" GETH_CHAINDATA_DIR="$GETH_DATA_DIR/geth/chaindata"

BIN
manta-pacific/setup.zip Normal file

Binary file not shown.

View File

@@ -6,7 +6,9 @@ volumes:
services: services:
manta-pacific: manta-pacific:
image: "public.ecr.aws/i6b2w2n6/op-geth:5.2.0" build:
context: .
dockerfile: Dockerfile.l2
ports: ports:
- "8545:8545" - "8545:8545"
- "8060:6060" - "8060:6060"
@@ -20,6 +22,8 @@ services:
GETH_OVERRIDE_CANYON: "1726783200" GETH_OVERRIDE_CANYON: "1726783200"
GETH_OVERRIDE_ECOTONE: "1726783200" GETH_OVERRIDE_ECOTONE: "1726783200"
command: command:
- "/bin/sh"
- "/entrypoint.sh"
- "--rollup.sequencerhttp=https://manta-pacific.calderachain.xyz/http" - "--rollup.sequencerhttp=https://manta-pacific.calderachain.xyz/http"
- "--authrpc.jwtsecret=/config/test-jwt-secret.txt" - "--authrpc.jwtsecret=/config/test-jwt-secret.txt"