@@ -27,7 +27,7 @@ type RollupBoost struct {
2727func (r * RollupBoost ) Run (service * Service , ctx * ExContext ) {
2828 service .
2929 WithImage ("docker.io/flashbots/rollup-boost" ).
30- WithTag ("v0.7.5 " ).
30+ WithTag ("v0.7.12 " ).
3131 WithArgs (
3232 "--rpc-host" , "0.0.0.0" ,
3333 "--rpc-port" , `{{Port "authrpc" 8551}}` ,
@@ -61,7 +61,7 @@ type OpRbuilder struct {
6161
6262func (o * OpRbuilder ) Run (service * Service , ctx * ExContext ) {
6363 service .WithImage ("ghcr.io/flashbots/op-rbuilder" ).
64- WithTag ("v0.2.8 " ).
64+ WithTag ("v0.2.12 " ).
6565 WithArgs (
6666 "node" ,
6767 "--authrpc.port" , `{{Port "authrpc" 8551}}` ,
@@ -238,7 +238,7 @@ func (o *OpBatcher) Run(service *Service, ctx *ExContext) {
238238 }
239239 service .
240240 WithImage ("us-docker.pkg.dev/oplabs-tools-artifacts/images/op-batcher" ).
241- WithTag ("v1.12.0-rc.1 " ).
241+ WithTag ("v1.16.2 " ).
242242 WithEntrypoint ("op-batcher" ).
243243 WithArgs (
244244 "--l1-eth-rpc" , Connect (o .L1Node , "http" ),
@@ -265,7 +265,7 @@ type OpNode struct {
265265func (o * OpNode ) Run (service * Service , ctx * ExContext ) {
266266 service .
267267 WithImage ("us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node" ).
268- WithTag ("v1.13.0-rc.1 " ).
268+ WithTag ("v1.16.2 " ).
269269 WithEntrypoint ("op-node" ).
270270 WithEnv ("A" , "B" ). // this is just a placeholder to make sure env works since we e2e test with the recipes
271271 WithArgs (
@@ -275,6 +275,7 @@ func (o *OpNode) Run(service *Service, ctx *ExContext) {
275275 "--l1.http-poll-interval" , "6s" ,
276276 "--l2" , Connect (o .L2Node , "authrpc" ),
277277 "--l2.jwt-secret" , "/data/jwtsecret" ,
278+ "--rollup.l1-chain-config" , "/data/genesis.json" ,
278279 "--sequencer.enabled" ,
279280 "--sequencer.l1-confs" , "0" ,
280281 "--verifier.l1-confs" , "0" ,
@@ -294,6 +295,7 @@ func (o *OpNode) Run(service *Service, ctx *ExContext) {
294295 "--rpc.enable-admin" ,
295296 "--safedb.path" , "/data_db" ,
296297 ).
298+ WithArtifact ("/data/genesis.json" , "genesis.json" ).
297299 WithArtifact ("/data/jwtsecret" , "jwtsecret" ).
298300 WithArtifact ("/data/rollup.json" , "rollup.json" ).
299301 WithVolume ("data" , "/data_db" )
@@ -335,7 +337,7 @@ func (o *OpGeth) Run(service *Service, ctx *ExContext) {
335337
336338 service .
337339 WithImage ("us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth" ).
338- WithTag ("v1.101503.2-rc .5" ).
340+ WithTag ("v1.101603 .5" ).
339341 WithEntrypoint ("/bin/sh" ).
340342 WithLabel ("metrics_path" , "/debug/metrics/prometheus" ).
341343 WithArgs (
@@ -404,7 +406,7 @@ func (r *RethEL) ReleaseArtifact() *release {
404406 return & release {
405407 Name : "reth" ,
406408 Org : "paradigmxyz" ,
407- Version : "v1.4.8 " ,
409+ Version : "v1.9.3 " ,
408410 Arch : func (goos , goarch string ) string {
409411 if goos == "linux" {
410412 return "x86_64-unknown-linux-gnu"
@@ -439,7 +441,7 @@ func (r *RethEL) Run(svc *Service, ctx *ExContext) {
439441 // start the reth el client
440442 svc .
441443 WithImage ("ghcr.io/paradigmxyz/reth" ).
442- WithTag ("v1.8.2 " ).
444+ WithTag ("v1.9.3 " ).
443445 WithEntrypoint ("/usr/local/bin/reth" ).
444446 WithArgs (
445447 "node" ,
0 commit comments