From 80f6519e1170836eeb22994c726cb81e94f2a7c9 Mon Sep 17 00:00:00 2001 From: nicolas <48695862+merklefruit@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:42:23 +0100 Subject: [PATCH] chore: update missing env vars and image tags --- .../holesky/commit-boost/cb-bolt-config.toml | 36 ++++++++++++++----- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/testnets/holesky/commit-boost/cb-bolt-config.toml b/testnets/holesky/commit-boost/cb-bolt-config.toml index d983dd09..d25e67f4 100644 --- a/testnets/holesky/commit-boost/cb-bolt-config.toml +++ b/testnets/holesky/commit-boost/cb-bolt-config.toml @@ -11,7 +11,7 @@ chain = "Holesky" [pbs] # Docker image to use for the PBS module. # BOLT: We use the bolt-boost PBS module here. -docker_image = "ghcr.io/chainbound/bolt-boost:v0.3.0-alpha-rc.2" +docker_image = "ghcr.io/chainbound/bolt-boost:v0.3.0-alpha.rc2" # Whether to enable the PBS module to request signatures from the Signer module (not used in the default PBS image) # OPTIONAL, DEFAULT: false with_signer = false @@ -121,21 +121,39 @@ id = "BOLT" # Type of the module. Supported values: commit, events type = "commit" # Docker image of the module -docker_image = "ghcr.io/chainbound/bolt-sidecar:v0.3.0-alpha-rc.2" +docker_image = "ghcr.io/chainbound/bolt-sidecar:v0.3.0-alpha.rc2" # Other environment variables for the module [modules.env] BOLT_SIDECAR_CHAIN = "holesky" -BOLT_SIDECAR_CONSTRAINTS_API = "http://cb_pbs:18550" # The address of the PBS module -BOLT_SIDECAR_BEACON_API = "http://135.181.191.125:44400" # The beacon node HTTP API endpoint -BOLT_SIDECAR_EXECUTION_API = "http://135.181.191.125:48545" # The execution layer HTTP API endpoint -BOLT_SIDECAR_ENGINE_API = "http://135.181.191.125:48551" # The execution layer engine API endpoint -BOLT_SIDECAR_JWT_HEX = "89732cef77d7e9a20021ee8f419dbbb51bdf7f60586932c272ddef02e70cb755" # The engine JWT -BOLT_SIDECAR_BUILDER_PROXY_PORT = "18551" # The port on which the sidecar builder-API will listen on. This is what your beacon node should connect to. -BOLT_SIDECAR_FEE_RECIPIENT = "0x0000000000000000000000000000000000000000" # The fee recipient (for fallback blocks) +# The address of the PBS module. cb_pbs is the name of the pbs module Docker container, you don't need to change it. +BOLT_SIDECAR_CONSTRAINTS_API = "http://cb_pbs:18550" +# The beacon node HTTP API endpoint +BOLT_SIDECAR_BEACON_API = "http://135.181.191.125:44400" +# The execution layer HTTP API endpoint +BOLT_SIDECAR_EXECUTION_API = "http://135.181.191.125:48545" +# The execution layer engine API endpoint +BOLT_SIDECAR_ENGINE_API = "http://135.181.191.125:48551" +# The engine JWT secret +BOLT_SIDECAR_ENGINE_JWT_HEX = "0000000000000000000000000000000000000000000000000000000000000000" +# The port on which the sidecar builder-API will listen on. This is what your beacon node should connect to. +BOLT_SIDECAR_BUILDER_PROXY_PORT = "18551" +# The fee recipient (for fallback blocks) +BOLT_SIDECAR_FEE_RECIPIENT = "0xB6C402298fcB88039bBFdE70F5aCE791F18CfAc8" +# The ECDSA private key used to sign commitments +BOLT_SIDECAR_COMMITMENT_PRIVATE_KEY = "0000000000000000000000000000000000000000000000000000000000000000" +# Secret BLS key to sign fallback payloads with +BOLT_SIDECAR_BUILDER_PRIVATE_KEY = "0000000000000000000000000000000000000000000000000000000000000000" +# Secret BLS key used to sign constraints +BOLT_SIDECAR_CONSTRAINT_PRIVATE_KEY = "0000000000000000000000000000000000000000000000000000000000000000" +# Enable unsafe lookahead (64 slots instead of 32) +BOLT_SIDECAR_ENABLE_UNSAFE_LOOKAHEAD = "true" +# Configuration for the sidecar's metrics and logging BOLT_SIDECAR_METRICS_PORT = "10000" +BOLT_SIDECAR_DISABLE_METRICS = "false" +RUST_LOG = "bolt_sidecar=debug" # Configuration for how metrics should be collected and scraped # OPTIONAL, skip metrics collection if missing