Skip to content

Commit

Permalink
chore: bump to ethereum-package v4.3.0 (#278)
Browse files Browse the repository at this point in the history
* chore: bump to ethereum-package v3.4.0

* chore: migrate to `ethpandaops/ethereum-package`

* fix: typo

* fix: typo

* fix: ethereum pkg args
  • Loading branch information
leovct authored Sep 26, 2024
1 parent 60c5b3e commit b2a3391
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions ethereum.star
Original file line number Diff line number Diff line change
@@ -1,45 +1,29 @@
ethereum_package = import_module(
"github.com/kurtosis-tech/ethereum-package/main.star@3.0.0"
"github.com/ethpandaops/ethereum-package/main.star@4.3.0"
)

GETH_IMAGE = "ethereum/client-go:v1.14.0"
LIGHTHOUSE_IMAGE = "sigp/lighthouse:v5.2.0"


def run(plan, args):
ethereum_package.run(
plan,
{
"participants": [
{
# Execution layer (EL)
"el_type": "geth",
"el_image": GETH_IMAGE,
# Consensus layer (CL)
"cl_type": "lighthouse",
"cl_image": LIGHTHOUSE_IMAGE,
"count": 1,
}
],
"network_params": {
# The ethereum package requires the network id to be a string.
"network_id": str(args["l1_chain_id"]),
"preregistered_validator_keys_mnemonic": args[
"l1_preallocated_mnemonic"
],
"dencun_fork_epoch": 0,
"electra_fork_epoch": 100000000,
"prague_fork_epoch": 100000000,
## Use these parameters for rapid testing and development.
# This setting reduces the number of seconds per slot on the Beacon chain to,
# allowing for faster progression through slots and epochs.
# "seconds_per_slot": 1,
"preset": args["l1_preset"],
# The "minimal" preset will pin up a network with minimal preset. It will take
# approximately 192 seconds to get to finalized epoch vs 1536 seconds with "mainnet"
# preset (default).
# Please note that minimal preset requires alternative client images.
# "preset": "minimal",
"preset": args["l1_preset"],
"seconds_per_slot": args["l1_seconds_per_slot"],
},
"additional_services": args["l1_additional_services"],
Expand Down

0 comments on commit b2a3391

Please sign in to comment.