diff --git a/playground/components.go b/playground/components.go index 5f1e1d6..a0ca688 100644 --- a/playground/components.go +++ b/playground/components.go @@ -12,7 +12,10 @@ import ( "github.com/flashbots/go-boost-utils/utils" ) -var defaultJWTToken = "04592280e1778419b7aa954d43871cb2cfb2ebda754fb735e8adeb293a88f9bf" +var ( + defaultJWTToken = "04592280e1778419b7aa954d43871cb2cfb2ebda754fb735e8adeb293a88f9bf" + latestPlaygroundUtilsTag = "cc6f172493d7ef6b88a5b7895f4b8619806c99f9" +) type RollupBoost struct { ELNode string @@ -562,7 +565,7 @@ type ClProxy struct { func (c *ClProxy) Apply(manifest *Manifest) { manifest.NewService("cl-proxy"). WithImage("docker.io/flashbots/playground-utils"). - WithTag("latest"). + WithTag(latestPlaygroundUtilsTag). WithEntrypoint("cl-proxy"). WithArgs( "--primary-builder", Connect(c.PrimaryBuilder, "authrpc"), @@ -579,7 +582,7 @@ type MevBoostRelay struct { func (m *MevBoostRelay) Apply(manifest *Manifest) { service := manifest.NewService("mev-boost-relay"). WithImage("docker.io/flashbots/playground-utils"). - WithTag("latest"). + WithTag(latestPlaygroundUtilsTag). WithEnv("ALLOW_SYNCING_BEACON_NODE", "1"). WithEntrypoint("mev-boost-relay"). DependsOnHealthy(m.BeaconClient). @@ -896,7 +899,7 @@ func UseHealthmon(m *Manifest, s *Service, chain string) { s.WithLabel(healthCheckSidecarLabel, healthmonName) m.NewService(healthmonName). WithImage("docker.io/flashbots/playground-utils"). - WithTag("latest"). + WithTag(latestPlaygroundUtilsTag). WithEntrypoint("healthmon"). WithArgs("--chain", chain, "--url", Connect(s.Name, "http")). WithReady(ReadyCheck{