Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
e83b3530
Commit
e83b3530
authored
Nov 24, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more changes
parent
3133ada0
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
90 additions
and
90 deletions
+90
-90
kurtosis.mod
kurtosis.mod
+1
-1
main.star
main.star
+10
-10
forkmon_launcher.star
src/forkmon/forkmon_launcher.star
+1
-1
grafana_launcher.star
src/grafana/grafana_launcher.star
+2
-2
lighthouse_launcher.star
...articipant_network/cl/lighthouse/lighthouse_launcher.star
+6
-6
lodestar_launcher.star
src/participant_network/cl/lodestar/lodestar_launcher.star
+6
-6
nimbus_launcher.star
src/participant_network/cl/nimbus/nimbus_launcher.star
+5
-5
prysm_launcher.star
src/participant_network/cl/prysm/prysm_launcher.star
+6
-6
teku_launcher.star
src/participant_network/cl/teku/teku_launcher.star
+6
-6
besu_launcher.star
src/participant_network/el/besu/besu_launcher.star
+4
-4
erigon_launcher.star
src/participant_network/el/erigon/erigon_launcher.star
+4
-4
geth_launcher.star
src/participant_network/el/geth/geth_launcher.star
+4
-4
nethermind_launcher.star
...articipant_network/el/nethermind/nethermind_launcher.star
+4
-4
mev_boost_launcher.star
src/participant_network/mev_boost/mev_boost_launcher.star
+2
-2
participant_network.star
src/participant_network/participant_network.star
+17
-17
cl_genesis_data_generator.star
..._data_generator/cl_genesis/cl_genesis_data_generator.star
+3
-3
cl_validator_keystore_generator.star
..._validator_keystores/cl_validator_keystore_generator.star
+4
-4
el_genesis_data_generator.star
..._data_generator/el_genesis/el_genesis_data_generator.star
+3
-3
prometheus_launcher.star
src/prometheus/prometheus_launcher.star
+1
-1
static_files.star
src/static_files/static_files.star
+1
-1
No files found.
kurtosis.mod
View file @
e83b3530
module:
name: "github.com/kurtosis-tech/eth2-
modul
e"
name: "github.com/kurtosis-tech/eth2-
packag
e"
main.star
View file @
e83b3530
participant_network = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/participant_network.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
participant_network = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/participant_network.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
static_files = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/static_files/static_files.star")
genesis_constants = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/genesis_constants/genesis_constants.star")
static_files = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/static_files/static_files.star")
genesis_constants = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/genesis_constants/genesis_constants.star")
transaction_spammer = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/transaction_spammer/transaction_spammer.star")
forkmon = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/forkmon/forkmon_launcher.star")
prometheus = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/prometheus/prometheus_launcher.star")
grafana =import_module("github.com/kurtosis-tech/eth2-
modul
e/src/grafana/grafana_launcher.star")
testnet_verifier = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/testnet_verifier/testnet_verifier.star")
transaction_spammer = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/transaction_spammer/transaction_spammer.star")
forkmon = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/forkmon/forkmon_launcher.star")
prometheus = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/prometheus/prometheus_launcher.star")
grafana =import_module("github.com/kurtosis-tech/eth2-
packag
e/src/grafana/grafana_launcher.star")
testnet_verifier = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/testnet_verifier/testnet_verifier.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
GRAFANA_USER = "admin"
GRAFANA_PASSWORD = "admin"
...
...
src/forkmon/forkmon_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
SERVICE_ID = "forkmon"
...
...
src/grafana/grafana_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
static_files = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/static_files/static_files.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
static_files = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/static_files/static_files.star")
SERVICE_ID = "grafana"
...
...
src/participant_network/cl/lighthouse/lighthouse_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/mev_boost/mev_boost_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/mev_boost/mev_boost_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
LIGHTHOUSE_BINARY_COMMAND = "lighthouse"
...
...
src/participant_network/cl/lodestar/lodestar_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/mev_boost/mev_boost_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/mev_boost/mev_boost_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
CONSENSUS_DATA_DIRPATH_ON_SERVICE_CONTAINER = "/consensus-data"
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER = "/genesis"
...
...
src/participant_network/cl/nimbus/nimbus_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_node_metrics_info.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_node_metrics_info.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
GENESIS_DATA_MOUNTPOINT_ON_CLIENT = "/genesis-data"
...
...
src/participant_network/cl/prysm/prysm_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/mev_boost/mev_boost_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/mev_boost/mev_boost_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
IMAGE_SEPARATOR_DELIMITER = ","
EXPECTED_NUM_IMAGES = 2
...
...
src/participant_network/cl/teku/teku_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/mev_boost/mev_boost_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/cl_node_metrics_info.star")
mev_boost_context_module = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/mev_boost/mev_boost_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
TEKU_BINARY_FILEPATH_IN_IMAGE = "/opt/teku/bin/teku"
...
...
src/participant_network/el/besu/besu_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/el_client_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/el_client_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
# The dirpath of the execution data directory on the client container
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER = "/opt/besu/execution-data"
...
...
src/participant_network/el/erigon/erigon_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/el_client_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/el_client_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
# The dirpath of the execution data directory on the client container
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER = "/home/erigon/execution-data"
...
...
src/participant_network/el/geth/geth_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/el_client_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/el_client_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
RPC_PORT_NUM = 8545
...
...
src/participant_network/el/nethermind/nethermind_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/el_client_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
parse_input = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/package_io/parse_input.star")
el_client_context = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/el_client_context.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
# The dirpath of the execution data directory on the client container
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER = "/execution-data"
...
...
src/participant_network/mev_boost/mev_boost_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
mev_boost_context = ("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/mev_boost/mev_boost_context.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
mev_boost_context = ("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/mev_boost/mev_boost_context.star")
FLASHBOTS_MEV_BOOST_IMAGE = "flashbots/mev-boost"
FLASHBOTS_MEV_BOOST_PORT = 18550
...
...
src/participant_network/participant_network.star
View file @
e83b3530
cl_validator_keystores = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/cl_validator_keystores/cl_validator_keystore_generator.star")
el_genesis_data_generator = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/el_genesis/el_genesis_data_generator.star")
cl_genesis_data_generator = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/cl_genesis/cl_genesis_data_generator.star")
cl_validator_keystores = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/cl_validator_keystores/cl_validator_keystore_generator.star")
el_genesis_data_generator = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/el_genesis/el_genesis_data_generator.star")
cl_genesis_data_generator = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/cl_genesis/cl_genesis_data_generator.star")
mev_boost_launcher_module = ("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/mev_boost/mev_boost_launcher.star")
mev_boost_launcher_module = ("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/mev_boost/mev_boost_launcher.star")
static_files = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/static_files/static_files.star")
static_files = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/static_files/static_files.star")
geth = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/geth/geth_launcher.star")
besu = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/besu/besu_launcher.star")
erigon = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/erigon/erigon_launcher.star")
nethermind = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/el/nethermind/nethermind_launcher.star")
geth = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/geth/geth_launcher.star")
besu = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/besu/besu_launcher.star")
erigon = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/erigon/erigon_launcher.star")
nethermind = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/el/nethermind/nethermind_launcher.star")
lighthouse = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/lighthouse/lighthouse_launcher.star")
lodestar = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/lodestar/lodestar_launcher.star")
nimbus = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/nimbus/nimbus_launcher.star")
prysm = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/prysm/prysm_launcher.star")
teku = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/cl/teku/teku_launcher.star")
lighthouse = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/lighthouse/lighthouse_launcher.star")
lodestar = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/lodestar/lodestar_launcher.star")
nimbus = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/nimbus/nimbus_launcher.star")
prysm = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/prysm/prysm_launcher.star")
teku = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/cl/teku/teku_launcher.star")
genesis_constants = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/genesis_constants/genesis_constants.star")
participant_module = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/participant.star")
genesis_constants = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/genesis_constants/genesis_constants.star")
participant_module = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/participant.star")
package_io = import_types("github.com/kurtosis-tech/eth2-
modul
e/types.proto")
package_io = import_types("github.com/kurtosis-tech/eth2-
packag
e/types.proto")
CL_CLIENT_SERVICE_ID_PREFIX = "cl-client-"
EL_CLIENT_SERVICE_ID_PREFIX = "el-client-"
...
...
src/participant_network/prelaunch_data_generator/cl_genesis/cl_genesis_data_generator.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
cl_genesis_data = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/cl_genesis/cl_genesis_data.star")
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
cl_genesis_data = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/cl_genesis/cl_genesis_data.star")
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
# Needed to copy the JWT secret and the EL genesis.json file
...
...
src/participant_network/prelaunch_data_generator/cl_validator_keystores/cl_validator_keystore_generator.star
View file @
e83b3530
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
keystore_files_module = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/cl_validator_keystores/keystore_files.star")
keystores_result = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/cl_validator_keystores/generate_keystores_result.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
keystore_files_module = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/cl_validator_keystores/keystore_files.star")
keystores_result = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/cl_validator_keystores/generate_keystores_result.star")
NODE_KEYSTORES_OUTPUT_DIRPATH_FORMAT_STR = "/node-{0}-keystores"
...
...
src/participant_network/prelaunch_data_generator/el_genesis/el_genesis_data_generator.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
el_genesis = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/el_genesis/el_genesis_data.star")
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
el_genesis = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/el_genesis/el_genesis_data.star")
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
CONFIG_DIRPATH_ON_GENERATOR = "/config"
GENESIS_CONFIG_FILENAME = "genesis-config.yaml"
...
...
src/prometheus/prometheus_launcher.star
View file @
e83b3530
shared_utils = import_module("github.com/kurtosis-tech/eth2-
modul
e/src/shared_utils/shared_utils.star")
shared_utils = import_module("github.com/kurtosis-tech/eth2-
packag
e/src/shared_utils/shared_utils.star")
SERVICE_ID = "prometheus"
...
...
src/static_files/static_files.star
View file @
e83b3530
# The path on the module container where static files are housed
STATIC_FILES_DIRPATH = "github.com/kurtosis-tech/eth2-
modul
e/static_files"
STATIC_FILES_DIRPATH = "github.com/kurtosis-tech/eth2-
packag
e/static_files"
# Geth + CL genesis generation
GENESIS_GENERATION_CONFIG_DIRPATH = STATIC_FILES_DIRPATH + "/genesis-generation-config"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment