Skip to content

Commit

Permalink
add verkle to not have checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Jan 16, 2024
1 parent ebc14e4 commit f0cde05
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 166 deletions.
28 changes: 0 additions & 28 deletions .github/tests/devnet-test.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,7 @@ This note is from 2023-10-05
`flashbots/mev-boost-relay:0.27` and later support `capella_fork_epoch` at `0` but this seems to require a few flags enabled
on the `lighthouse` beacon client including `--always-prefer-builder-payload` and `--disable-peer-scoring`
Users are recommended to use [`examples/capella-mev.yaml`](./examples/capella-mev.yaml); as inspiration for reliable payload
delivery.
Users are recommended to browse the example tests [`./github/tests`](./github/tests); as inspiration for different ways to use the package.
## Pre-funded accounts at Genesis
Expand Down
1 change: 1 addition & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please find the example configurations in the [../.github/tests](../.github/tests) directory.
18 changes: 0 additions & 18 deletions examples/capella-mev.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions examples/dencun.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions examples/verkle-gen-nethermind.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions examples/verkle-gen.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions examples/verkle.yaml

This file was deleted.

10 changes: 6 additions & 4 deletions src/cl/lighthouse/lighthouse_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,13 @@ def get_beacon_config(
)
)
else: # Devnets
cmd.append(
"--checkpoint-sync-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
# TODO Remove once checkpoint sync is working for verkle
if "verkle" not in network:
cmd.append(
"--checkpoint-sync-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
)
)
)
cmd.append(
"--boot-nodes="
+ shared_utils.get_devnet_enrs_list(
Expand Down
10 changes: 6 additions & 4 deletions src/cl/lodestar/lodestar_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,13 @@ def get_beacon_config(
)
)
else: # Devnets
cmd.append(
"--checkpointSyncUrl=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
# TODO Remove once checkpoint sync is working for verkle
if "verkle" not in network:
cmd.append(
"--checkpointSyncUrl=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
)
)
)
cmd.append(
"--bootnodes="
+ shared_utils.get_devnet_enrs_list(
Expand Down
18 changes: 10 additions & 8 deletions src/cl/prysm/prysm_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -355,16 +355,18 @@ def get_beacon_config(
+ "/boot_enr.yaml"
)
else: # Devnets
cmd.append(
"--genesis-beacon-api-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
# TODO Remove once checkpoint sync is working for verkle
if "verkle" not in network:
cmd.append(
"--genesis-beacon-api-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
)
)
)
cmd.append(
"--checkpoint-sync-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
cmd.append(
"--checkpoint-sync-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
)
)
)
cmd.append(
"--bootstrap-node="
+ constants.GENESIS_CONFIG_MOUNT_PATH_ON_CONTAINER
Expand Down
10 changes: 6 additions & 4 deletions src/cl/teku/teku_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,13 @@ def get_beacon_config(
)
)
else: # Devnets
cmd.append(
"--checkpoint-sync-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
# TODO Remove once checkpoint sync is working for verkle
if "verkle" not in network:
cmd.append(
"--checkpoint-sync-url=https://checkpoint-sync.{0}.ethpandaops.io".format(
network
)
)
)
cmd.append(
"--p2p-discovery-bootnodes="
+ shared_utils.get_devnet_enrs_list(
Expand Down

0 comments on commit f0cde05

Please sign in to comment.