Skip to content

Commit a9cc2c2

Browse files
authored
chore: update images / base overlay (#208)
### Description - Update rollup boost to the latest version - Update Base overlay to use our docker build (and the latest commit from main) - Update bproxy to the latest version
1 parent 733ba37 commit a9cc2c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

playground/components.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type RollupBoost struct {
2727
func (r *RollupBoost) Run(service *Service, ctx *ExContext) {
2828
service.
2929
WithImage("docker.io/flashbots/rollup-boost").
30-
WithTag("0.7.0").
30+
WithTag("v0.7.5").
3131
WithArgs(
3232
"--rpc-host", "0.0.0.0",
3333
"--rpc-port", `{{Port "authrpc" 8551}}`,
@@ -112,13 +112,13 @@ func (f *FlashblocksRPC) Run(service *Service, ctx *ExContext) {
112112
}
113113

114114
if f.BaseOverlay {
115-
// Base doesn't have built image, so we use mikawamp/base-reth-node
116-
service.WithImage("docker.io/mikawamp/base-reth-node").
117-
WithTag("latest").
115+
service.WithImage("ghcr.io/base/node-reth-dev").
116+
WithTag("main").
118117
WithEntrypoint("/app/base-reth-node").
119118
WithArgs(
120119
"node",
121120
"--websocket-url", websocketURL,
121+
"--enable-metering",
122122
)
123123
} else {
124124
service.WithImage("flashbots/flashblocks-rpc").
@@ -171,7 +171,7 @@ func (f *BProxy) Run(service *Service, ctx *ExContext) {
171171
peers = append(peers, Connect(peer, "authrpc"))
172172
}
173173
service.WithImage("ghcr.io/flashbots/bproxy").
174-
WithTag("v0.0.91").
174+
WithTag("v0.1.2").
175175
WithArgs(
176176
"serve",
177177
"--authrpc-backend", f.TargetAuthrpc,

0 commit comments

Comments
 (0)