@@ -96,7 +96,7 @@ services:
9696 l1-genesis :
9797 condition : service_completed_successfully
9898 healthcheck :
99- test : [ "CMD", "curl", "-f", "http://localhost:${L1_HTTP_PORT}" ]
99+ test : ["CMD", "curl", "-f", "http://localhost:${L1_HTTP_PORT}"]
100100 interval : 3s
101101 timeout : 2s
102102 retries : 40
@@ -191,7 +191,7 @@ services:
191191 dockerfile : espresso/docker/op-stack/Dockerfile
192192 target : op-node-target
193193 healthcheck :
194- test : [ "CMD", "curl", "-f", "http://localhost:${ROLLUP_PORT}" ]
194+ test : ["CMD", "curl", "-f", "http://localhost:${ROLLUP_PORT}"]
195195 interval : 3s
196196 timeout : 2s
197197 retries : 40
@@ -233,7 +233,7 @@ services:
233233 dockerfile : espresso/docker/op-stack/Dockerfile
234234 target : op-node-target
235235 healthcheck :
236- test : [ "CMD", "curl", "-f", "http://localhost:${VERIFIER_PORT}" ]
236+ test : ["CMD", "curl", "-f", "http://localhost:${VERIFIER_PORT}"]
237237 interval : 3s
238238 timeout : 2s
239239 retries : 40
@@ -271,7 +271,7 @@ services:
271271 dockerfile : espresso/docker/op-stack/Dockerfile
272272 target : op-node-target
273273 healthcheck :
274- test : [ "CMD", "curl", "-f", "http://localhost:${CAFF_PORT}" ]
274+ test : ["CMD", "curl", "-f", "http://localhost:${CAFF_PORT}"]
275275 interval : 3s
276276 timeout : 2s
277277 retries : 40
@@ -287,9 +287,9 @@ services:
287287 OP_NODE_L1_ETH_RPC : http://l1-geth:${L1_HTTP_PORT}
288288 OP_NODE_L1_BEACON : http://l1-beacon:${L1_BEACON_PORT}
289289 OP_NODE_L2_ENGINE_RPC : http://op-geth-caff-node:${OP_ENGINE_PORT}
290- OP_NODE_CAFF_L1_ETH_RPC : http://l1-geth:${L1_HTTP_PORT}
291- OP_NODE_CAFF_ESPRESSO_LIGHT_CLIENT_ADDR : " 0x703848f4c85f18e3acd8196c8ec91eb0b7bd0797"
292- OP_NODE_CAFF_HOTSHOT_URLS : http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT},http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT}
290+ OP_NODE_ESPRESSO_L1_URL : http://l1-geth:${L1_HTTP_PORT}
291+ OP_NODE_ESPRESSO_LIGHT_CLIENT_ADDR : " 0x703848f4c85f18e3acd8196c8ec91eb0b7bd0797"
292+ OP_NODE_ESPRESSO_URLS : http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT},http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT}
293293 OP_NODE_RPC_PORT : ${CAFF_PORT}
294294 ports :
295295 - " ${CAFF_PORT}:${CAFF_PORT}"
@@ -301,22 +301,21 @@ services:
301301 - --rollup.config=/config/rollup.json
302302 - --rpc.addr=0.0.0.0
303303 - --sequencer.enabled=false
304- - --caff.node =true
304+ - --espresso.enabled =true
305305 - --verifier.l1-confs=0
306306 - --rollup.load-protocol-versions=false
307307 - --rollup.halt=none
308308 - --l1.trustrpc=true
309309 - --rpc.enable-admin=true
310- - --caff.next-hotshot-block-num=1
311- - --caff.polling-hotshot-polling-interval=500ms
310+ - --espresso.poll-interval=500ms
312311 - --log.level=debug
313312 - --p2p.disable=true
314313 - --l1.http-poll-interval=1s
315314 - --l1.epoch-poll-interval=1s
316315 restart : " no"
317316
318317 op-batcher :
319- profiles : [ "default" ]
318+ profiles : ["default"]
320319 build :
321320 context : ../
322321 dockerfile : espresso/docker/op-stack/Dockerfile
@@ -339,30 +338,35 @@ services:
339338 OP_BATCHER_L1_ETH_RPC : http://l1-geth:${L1_HTTP_PORT}
340339 OP_BATCHER_L2_ETH_RPC : http://op-geth-sequencer:${OP_HTTP_PORT}
341340 OP_BATCHER_ROLLUP_RPC : http://op-node-sequencer:${ROLLUP_PORT}
342- OP_BATCHER_ESPRESSO_URL : http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT},http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT}
341+ OP_BATCHER_ESPRESSO_URLS : http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT},http://espresso-dev-node:${ESPRESSO_SEQUENCER_API_PORT}
343342 volumes :
344343 - ../packages/contracts-bedrock/lib/superchain-registry/ops/testdata/monorepo:/config
345344 command :
346345 - op-batcher
347- - --espresso-light-client-addr=0x703848f4c85f18e3acd8196c8ec91eb0b7bd0797
348- - --testing-espresso-batcher-private-key=${OP_TESTING_BATCHER_PRIVATE_KEY:-$OPERATOR_PRIVATE_KEY}
346+ - --espresso.enabled=true
347+ - --espresso.poll-interval=1s
348+ - --espresso.light-client-addr=0x703848f4c85f18e3acd8196c8ec91eb0b7bd0797
349+ - --espresso.testing-batcher-private-key=${OP_TESTING_BATCHER_PRIVATE_KEY:-$OPERATOR_PRIVATE_KEY}
349350 - --private-key=${OP_BATCHER_PRIVATE_KEY:-$OPERATOR_PRIVATE_KEY}
350351 - --throttle-threshold=0
351352 - --max-channel-duration=2
352353 - --target-num-frames=1
353354 - --max-pending-tx=32
354355 - --altda.max-concurrent-da-requests=32
355- - --espresso-poll-interval=1s
356356
357357 op-batcher-tee :
358- profiles : [ "tee" ]
358+ profiles : ["tee"]
359359 build :
360360 context : ../
361361 dockerfile : espresso/docker/op-stack/Dockerfile
362362 target : op-batcher-enclave-target
363363 image : op-batcher-tee:espresso
364364 healthcheck :
365- test : [ "CMD-SHELL", "test -f /tmp/enclave-tools.pid && kill -0 $(cat /tmp/enclave-tools.pid) 2>/dev/null || exit 1" ]
365+ test :
366+ [
367+ " CMD-SHELL" ,
368+ " test -f /tmp/enclave-tools.pid && kill -0 $(cat /tmp/enclave-tools.pid) 2>/dev/null || exit 1" ,
369+ ]
366370 interval : 30s
367371 timeout : 10s
368372 retries : 3
@@ -408,7 +412,7 @@ services:
408412 /source/espresso/docker/op-batcher-tee/run-enclave.sh
409413
410414 op-proposer :
411- profiles : [ "default" ]
415+ profiles : ["default"]
412416 build :
413417 context : ../
414418 dockerfile : espresso/docker/op-stack/Dockerfile
@@ -432,10 +436,10 @@ services:
432436 OP_PROPOSER_PROPOSAL_INTERVAL : 6s
433437 OP_PROPOSER_MNEMONIC : " test test test test test test test test test test test junk"
434438 OP_PROPOSER_HD_PATH : " m/44'/60'/0'/0/1"
435- OP_PROPOSER_GAME_TYPE : ' 1 '
439+ OP_PROPOSER_GAME_TYPE : " 1 "
436440
437441 op-proposer-tee :
438- profiles : [ "tee" ]
442+ profiles : ["tee"]
439443 build :
440444 context : ../
441445 dockerfile : espresso/docker/op-stack/Dockerfile
@@ -459,11 +463,10 @@ services:
459463 OP_PROPOSER_PROPOSAL_INTERVAL : 6s
460464 OP_PROPOSER_MNEMONIC : " test test test test test test test test test test test junk"
461465 OP_PROPOSER_HD_PATH : " m/44'/60'/0'/0/1"
462- OP_PROPOSER_GAME_TYPE : ' 1'
463-
466+ OP_PROPOSER_GAME_TYPE : " 1"
464467
465468 op-challenger :
466- profiles : [ "default" ]
469+ profiles : ["default"]
467470 build :
468471 context : ../
469472 dockerfile : espresso/docker/op-stack/Dockerfile
0 commit comments