Skip to content

Commit

Permalink
Bump charon v1.2 stack (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaloyanTanev authored Dec 10, 2024
1 parent d3c8225 commit 2b67639
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
8 changes: 7 additions & 1 deletion .env.sample.holesky
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/
# Connect to one or more external beacon nodes. Use a comma separated list excluding spaces.
#CHARON_BEACON_NODE_ENDPOINTS=

# Increase the duration charon will wait for requests to the beacon node
#CHARON_BEACON_NODE_TIMEOUT=

# Increase the duration charon will wait while publishing data to the beacon node
#CHARON_BEACON_NODE_SUBMIT_TIMEOUT=

# Override the charon logging level; debug, info, warning, error.
#CHARON_LOG_LEVEL=

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

# Grafana Loki docker container image version, e.g. `latest` or `2.8.2`.
# See available tags https://hub.docker.com/r/grafana/loki/tags.
#LOKI_VERSION=
#LOKI_VERSION=
8 changes: 7 additions & 1 deletion .env.sample.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
# Connect to one or more external beacon nodes. Use a comma separated list excluding spaces.
#CHARON_BEACON_NODE_ENDPOINTS=

# Increase the duration charon will wait for requests to the beacon node
#CHARON_BEACON_NODE_TIMEOUT=

# Increase the duration charon will wait while publishing data to the beacon node
#CHARON_BEACON_NODE_SUBMIT_TIMEOUT=

# Override the charon logging level; debug, info, warning, error.
#CHARON_LOG_LEVEL=

Expand Down Expand Up @@ -127,4 +133,4 @@ MEVBOOST_RELAYS=https://0xa15b52576bcbf1072f4a011c0f99f9fb6c66f3e1ff321f11f461d1

# Grafana Loki docker container image version, e.g. `latest` or `2.8.2`.
# See available tags https://hub.docker.com/r/grafana/loki/tags.
#LOKI_VERSION=
#LOKI_VERSION=
10 changes: 6 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
# | | | | __/ |_| | | | __/ | | | | | | | | | | | (_| |
# |_| |_|\___|\__|_| |_|\___|_| |_| |_| |_|_|_| |_|\__,_|
nethermind:
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.28.0}
image: nethermind/nethermind:${NETHERMIND_VERSION:-1.29.0}
restart: unless-stopped
ports:
- ${NETHERMIND_PORT_P2P:-30303}:30303/tcp # P2P TCP
Expand Down Expand Up @@ -77,9 +77,11 @@ services:
# \___|_| |_|\__,_|_| \___/|_| |_|

charon:
image: obolnetwork/charon:${CHARON_VERSION:-v1.1.1}
image: obolnetwork/charon:${CHARON_VERSION:-v1.2.0}
environment:
- CHARON_BEACON_NODE_ENDPOINTS=${CHARON_BEACON_NODE_ENDPOINTS:-http://lighthouse:5052}
- CHARON_BEACON_NODE_TIMEOUT=${CHARON_BEACON_NODE_TIMEOUT:-3s}
- CHARON_BEACON_NODE_SUBMIT_TIMEOUT=${CHARON_BEACON_NODE_SUBMIT_TIMEOUT:-4s}
- CHARON_LOG_LEVEL=${CHARON_LOG_LEVEL:-info}
- CHARON_LOG_FORMAT=${CHARON_LOG_FORMAT:-console}
- CHARON_P2P_RELAYS=${CHARON_P2P_RELAYS:-https://0.relay.obol.tech,https://1.relay.obol.tech/}
Expand Down Expand Up @@ -107,7 +109,7 @@ services:
# |_|\___/ \__,_|\___||___/\__\__,_|_|

lodestar:
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.20.2}
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.23.0}
depends_on: [charon]
entrypoint: /opt/lodestar/run.sh
networks: [dvnode]
Expand All @@ -128,7 +130,7 @@ services:
# | | | | | | __/\ V /_____| |_) | (_) | (_) \__ \ |_
# |_| |_| |_|\___| \_/ |_.__/ \___/ \___/|___/\__|
mev-boost:
image: ${MEVBOOST_IMAGE:-flashbots/mev-boost}:${MEVBOOST_VERSION:-1.7.0}
image: ${MEVBOOST_IMAGE:-flashbots/mev-boost}:${MEVBOOST_VERSION:-1.8.1}
command: |
-${NETWORK}
-loglevel=debug
Expand Down

0 comments on commit 2b67639

Please sign in to comment.