Skip to content

Commit

Permalink
update containers for deneb ready goerli (#244)
Browse files Browse the repository at this point in the history
Update container versions to be ready for upcoming deneb fork on goerli.

EF annoucement: https://blog.ethereum.org/2024/01/10/goerli-dencun-announcement
  • Loading branch information
xenowits authored Jan 15, 2024
1 parent da1f4b1 commit 05195fd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

######### Geth Config #########

# Geth docker container image version, e.g. `latest` or `v1.13.8`.
# Geth docker container image version, e.g. `latest` or `v1.13.9`.
# See available tags https://hub.docker.com/r/ethereum/client-go/tags
#GETH_VERSION=

Expand All @@ -18,7 +18,7 @@

######### Lighthouse Config #########

# Lighthouse beacon node docker container image version, e.g. `latest` or `v4.2.0`.
# Lighthouse beacon node docker container image version, e.g. `latest` or `v4.6.0`.
# See available tags https://hub.docker.com/r/sigp/lighthouse/tags.
#LIGHTHOUSE_VERSION=

Expand All @@ -31,7 +31,7 @@

######### Lodestar Config #########

# Lodestar validator client docker container image version, e.g. `latest` or `v1.8.0`.
# Lodestar validator client docker container image version, e.g. `latest` or `v1.14.0`.
# See available tags https://hub.docker.com/r/chainsafe/lodestar/tags
#LODESTAR_VERSION=

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
# |___/

geth:
image: ethereum/client-go:${GETH_VERSION:-v1.13.8}
image: ethereum/client-go:${GETH_VERSION:-v1.13.9}
ports:
- ${GETH_PORT_P2P:-30303}:30303/tcp # P2P TCP
- ${GETH_PORT_P2P:-30303}:30303/udp # P2P UDP
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
# |___/

lighthouse:
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.5.0}
image: sigp/lighthouse:${LIGHTHOUSE_VERSION:-v4.6.0-rc.0}
ports:
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/tcp # P2P TCP
- ${LIGHTHOUSE_PORT_P2P:-9000}:9000/udp # P2P UDP
Expand Down Expand Up @@ -78,7 +78,7 @@ services:
# \___|_| |_|\__,_|_| \___/|_| |_|

charon:
image: obolnetwork/charon:${CHARON_VERSION:-v0.18.0}
image: obolnetwork/charon:${CHARON_VERSION:-v0.19.0-rc1}
environment:
- CHARON_BEACON_NODE_ENDPOINTS=${CHARON_BEACON_NODE_ENDPOINTS:-http://lighthouse:5052}
- CHARON_LOG_LEVEL=${CHARON_LOG_LEVEL:-info}
Expand All @@ -105,7 +105,7 @@ services:
# |_|\___/ \__,_|\___||___/\__\__,_|_|

lodestar:
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.12.0}
image: chainsafe/lodestar:${LODESTAR_VERSION:-v1.14.0-rc.1}
depends_on: [charon]
entrypoint: /opt/lodestar/run.sh
networks: [dvnode]
Expand Down
5 changes: 3 additions & 2 deletions lodestar/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

BUILDER_SELECTION="maxprofit"
BUILDER_SELECTION="executiononly"

# If the builder API is enabled, override the builder selection to signal Lodestar to always propose blinded blocks.
if [[ $BUILDER_API_ENABLED == "true" ]];
Expand Down Expand Up @@ -30,4 +30,5 @@ exec node /usr/app/packages/cli/bin/lodestar validator \
--beaconNodes="$BEACON_NODE_ADDRESS" \
--builder="$BUILDER_API_ENABLED" \
--builder.selection="$BUILDER_SELECTION" \
--distributed
--distributed \
--useProduceBlockV3=false

0 comments on commit 05195fd

Please sign in to comment.