Skip to content

Commit 793d543

Browse files
authored
Enable Builder API by default (#375)
1 parent d335d4d commit 793d543

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.env.sample.holesky

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
3333
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml
3434

3535
# Enables Builder API.
36-
#BUILDER_API_ENABLED=
36+
BUILDER_API_ENABLED=true
3737

3838
######### Execution Layer Config #########
3939

.env.sample.hoodi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
3333
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml
3434

3535
# Enables Builder API.
36-
#BUILDER_API_ENABLED=
36+
BUILDER_API_ENABLED=true
3737

3838
######### Execution Layer Config #########
3939

.env.sample.mainnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
3333
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml
3434

3535
# Enables Builder API.
36-
#BUILDER_API_ENABLED=
36+
BUILDER_API_ENABLED=true
3737

3838
######### Execution Layer Config #########
3939

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ services:
9898
- CHARON_P2P_TCP_ADDRESS=0.0.0.0:${CHARON_PORT_P2P_TCP:-3610}
9999
- CHARON_VALIDATOR_API_ADDRESS=0.0.0.0:3600
100100
- CHARON_MONITORING_ADDRESS=0.0.0.0:3620
101-
- CHARON_BUILDER_API=${BUILDER_API_ENABLED:-false}
101+
- CHARON_BUILDER_API=${BUILDER_API_ENABLED:-true}
102102
- CHARON_FEATURE_SET_ENABLE=${CHARON_FEATURE_SET_ENABLE:-}
103103
- CHARON_LOKI_ADDRESSES=${CHARON_LOKI_ADDRESSES:-http://loki:3100/loki/api/v1/push}
104104
- CHARON_LOKI_SERVICE=charon
@@ -130,7 +130,7 @@ services:
130130
environment:
131131
BEACON_NODE_ADDRESS: http://charon:3600
132132
NETWORK: ${NETWORK}
133-
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-false}
133+
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-true}
134134
BUILDER_SELECTION: ${BUILDER_SELECTION:-builderalways}
135135
labels:
136136
- "promtail-monitored=${LODESTAR_PROMTAIL_MONITORED:-true}"

0 commit comments

Comments
 (0)