Skip to content

Commit

Permalink
chore: update missing env vars and image tags
Browse files Browse the repository at this point in the history
  • Loading branch information
merklefruit committed Nov 8, 2024
1 parent 41f5a72 commit 80f6519
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions testnets/holesky/commit-boost/cb-bolt-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 80f6519

Please sign in to comment.