Skip to content

Commit 2b67639

Browse files
authored
Bump charon v1.2 stack (#296)
1 parent d3c8225 commit 2b67639

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

.env.sample.holesky

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/
6060
# Connect to one or more external beacon nodes. Use a comma separated list excluding spaces.
6161
#CHARON_BEACON_NODE_ENDPOINTS=
6262

63+
# Increase the duration charon will wait for requests to the beacon node
64+
#CHARON_BEACON_NODE_TIMEOUT=
65+
66+
# Increase the duration charon will wait while publishing data to the beacon node
67+
#CHARON_BEACON_NODE_SUBMIT_TIMEOUT=
68+
6369
# Override the charon logging level; debug, info, warning, error.
6470
#CHARON_LOG_LEVEL=
6571

@@ -127,4 +133,4 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/
127133

128134
# Grafana Loki docker container image version, e.g. `latest` or `2.8.2`.
129135
# See available tags https://hub.docker.com/r/grafana/loki/tags.
130-
#LOKI_VERSION=
136+
#LOKI_VERSION=

.env.sample.mainnet

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
6060
# Connect to one or more external beacon nodes. Use a comma separated list excluding spaces.
6161
#CHARON_BEACON_NODE_ENDPOINTS=
6262

63+
# Increase the duration charon will wait for requests to the beacon node
64+
#CHARON_BEACON_NODE_TIMEOUT=
65+
66+
# Increase the duration charon will wait while publishing data to the beacon node
67+
#CHARON_BEACON_NODE_SUBMIT_TIMEOUT=
68+
6369
# Override the charon logging level; debug, info, warning, error.
6470
#CHARON_LOG_LEVEL=
6571

@@ -127,4 +133,4 @@ MEVBOOST_RELAYS=https://0xa15b52576bcbf1072f4a011c0f99f9fb6c66f3e1ff321f11f461d1
127133

128134
# Grafana Loki docker container image version, e.g. `latest` or `2.8.2`.
129135
# See available tags https://hub.docker.com/r/grafana/loki/tags.
130-
#LOKI_VERSION=
136+
#LOKI_VERSION=

docker-compose.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
# | | | | __/ |_| | | | __/ | | | | | | | | | | | (_| |
1010
# |_| |_|\___|\__|_| |_|\___|_| |_| |_| |_|_|_| |_|\__,_|
1111
nethermind:
12-
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.28.0}
12+
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.29.0}
1313
restart: unless-stopped
1414
ports:
1515
- ${NETHERMIND_PORT_P2P:-30303}:30303/tcp # P2P TCP
@@ -77,9 +77,11 @@ services:
7777
# \___|_| |_|\__,_|_| \___/|_| |_|
7878

7979
charon:
80-
image: obolnetwork/charon:${CHARON_VERSION:-v1.1.1}
80+
image: obolnetwork/charon:${CHARON_VERSION:-v1.2.0}
8181
environment:
8282
- CHARON_BEACON_NODE_ENDPOINTS=${CHARON_BEACON_NODE_ENDPOINTS:-http://lighthouse:5052}
83+
- CHARON_BEACON_NODE_TIMEOUT=${CHARON_BEACON_NODE_TIMEOUT:-3s}
84+
- CHARON_BEACON_NODE_SUBMIT_TIMEOUT=${CHARON_BEACON_NODE_SUBMIT_TIMEOUT:-4s}
8385
- CHARON_LOG_LEVEL=${CHARON_LOG_LEVEL:-info}
8486
- CHARON_LOG_FORMAT=${CHARON_LOG_FORMAT:-console}
8587
- CHARON_P2P_RELAYS=${CHARON_P2P_RELAYS:-https://0.relay.obol.tech,https://1.relay.obol.tech/}
@@ -107,7 +109,7 @@ services:
107109
# |_|\___/ \__,_|\___||___/\__\__,_|_|
108110

109111
lodestar:
110-
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.20.2}
112+
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.23.0}
111113
depends_on: [charon]
112114
entrypoint: /opt/lodestar/run.sh
113115
networks: [dvnode]
@@ -128,7 +130,7 @@ services:
128130
# | | | | | | __/\ V /_____| |_) | (_) | (_) \__ \ |_
129131
# |_| |_| |_|\___| \_/ |_.__/ \___/ \___/|___/\__|
130132
mev-boost:
131-
image: ${MEVBOOST_IMAGE:-flashbots/mev-boost}:${MEVBOOST_VERSION:-1.7.0}
133+
image: ${MEVBOOST_IMAGE:-flashbots/mev-boost}:${MEVBOOST_VERSION:-1.8.1}
132134
command: |
133135
-${NETWORK}
134136
-loglevel=debug

0 commit comments

Comments
 (0)