Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.sample.holesky
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml

# Enables Builder API.
#BUILDER_API_ENABLED=
BUILDER_API_ENABLED=true

######### Execution Layer Config #########

Expand Down
2 changes: 1 addition & 1 deletion .env.sample.hoodi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml

# Enables Builder API.
#BUILDER_API_ENABLED=
BUILDER_API_ENABLED=true

######### Execution Layer Config #########

Expand Down
2 changes: 1 addition & 1 deletion .env.sample.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml

# Enables Builder API.
#BUILDER_API_ENABLED=
BUILDER_API_ENABLED=true

######### Execution Layer Config #########

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
- CHARON_P2P_TCP_ADDRESS=0.0.0.0:${CHARON_PORT_P2P_TCP:-3610}
- CHARON_VALIDATOR_API_ADDRESS=0.0.0.0:3600
- CHARON_MONITORING_ADDRESS=0.0.0.0:3620
- CHARON_BUILDER_API=${BUILDER_API_ENABLED:-false}
- CHARON_BUILDER_API=${BUILDER_API_ENABLED:-true}
- CHARON_FEATURE_SET_ENABLE=${CHARON_FEATURE_SET_ENABLE:-}
- CHARON_LOKI_ADDRESSES=${CHARON_LOKI_ADDRESSES:-http://loki:3100/loki/api/v1/push}
- CHARON_LOKI_SERVICE=charon
Expand Down Expand Up @@ -130,7 +130,7 @@ services:
environment:
BEACON_NODE_ADDRESS: http://charon:3600
NETWORK: ${NETWORK}
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-false}
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-true}
BUILDER_SELECTION: ${BUILDER_SELECTION:-builderalways}
labels:
- "promtail-monitored=${LODESTAR_PROMTAIL_MONITORED:-true}"
Expand Down