Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
change to my name
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Jul 7, 2023
1 parent 7f4a125 commit 59ec1d7
Show file tree
Hide file tree
Showing 16 changed files with 83 additions and 83 deletions.
2 changes: 1 addition & 1 deletion kurtosis.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
name: "github.com/kurtosis-tech/eth-network-package"
name: "github.com/barnabasbusa/eth-network-package"
8 changes: 4 additions & 4 deletions main.star
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
participant_network = import_module("github.com/kurtosis-tech/eth-network-package/src/participant_network.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
participant_network = import_module("github.com/barnabasbusa/eth-network-package/src/participant_network.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")

static_files = import_module("github.com/kurtosis-tech/eth-network-package/static_files/static_files.star")
genesis_constants = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/genesis_constants/genesis_constants.star")
static_files = import_module("github.com/barnabasbusa/eth-network-package/static_files/static_files.star")
genesis_constants = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/genesis_constants/genesis_constants.star")

def run(plan, args):
args_with_right_defaults = input_parser.parse_input(args)
Expand Down
10 changes: 5 additions & 5 deletions src/cl/lighthouse/lighthouse_launcher.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_metrics_info.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_metrics_info.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

LIGHTHOUSE_BINARY_COMMAND = "lighthouse"

Expand Down
12 changes: 6 additions & 6 deletions src/cl/lodestar/lodestar_launcher.star
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_ready_conditions.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_ready_conditions.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

CONSENSUS_DATA_DIRPATH_ON_SERVICE_CONTAINER = "/consensus-data"
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER = "/genesis"
Expand Down
14 changes: 7 additions & 7 deletions src/cl/nimbus/nimbus_launcher.star
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_ready_conditions.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_ready_conditions.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

GENESIS_DATA_MOUNTPOINT_ON_CLIENT = "/genesis-data"

Expand Down Expand Up @@ -130,7 +130,7 @@ def get_config(
# 1) https://github.com/status-im/nimbus-eth2/blob/stable/scripts/launch_local_testnet.sh
# 2) https://github.com/status-im/nimbus-eth2/blob/67ab477a27e358d605e99bffeb67f98d18218eca/scripts/launch_local_testnet.sh#L417
# WARNING: Do NOT set the --max-peers flag here, as doing so to the exact number of nodes seems to mess things up!
# See: https://github.com/kurtosis-tech/eth2-merge-kurtosis-module/issues/26
# See: https://github.com/barnabasbusa/eth2-merge-kurtosis-module/issues/26
cmd = [
"mkdir",
CONSENSUS_DATA_DIRPATH_IN_SERVICE_CONTAINER,
Expand Down
12 changes: 6 additions & 6 deletions src/cl/prysm/prysm_launcher.star
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_ready_conditions.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_ready_conditions.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

IMAGE_SEPARATOR_DELIMITER = ","
EXPECTED_NUM_IMAGES = 2
Expand Down
12 changes: 6 additions & 6 deletions src/cl/teku/teku_launcher.star
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/cl_node_ready_conditions.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
cl_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_client_context.star")
cl_node_metrics = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_metrics_info.star")
cl_node_ready_conditions = import_module("github.com/barnabasbusa/eth-network-package/src/cl/cl_node_ready_conditions.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

TEKU_BINARY_FILEPATH_IN_IMAGE = "/opt/teku/bin/teku"

Expand Down
10 changes: 5 additions & 5 deletions src/el/besu/besu_launcher.star
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
el_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_client_context.star")
el_admin_node_info = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_admin_node_info.star")
package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
el_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_client_context.star")
el_admin_node_info = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_admin_node_info.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

# The dirpath of the execution data directory on the client container
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER = "/opt/besu/execution-data"
Expand Down
12 changes: 6 additions & 6 deletions src/el/erigon/erigon_launcher.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
el_admin_node_info = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_admin_node_info.star")
el_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_client_context.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
el_admin_node_info = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_admin_node_info.star")
el_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_client_context.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

# The dirpath of the execution data directory on the client container
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER = "/home/erigon/execution-data"
Expand Down Expand Up @@ -86,7 +86,7 @@ def get_config(network_id, genesis_data, image, existing_el_clients, verbosity_l
genesis_json_filepath_on_client,
)

# TODO remove this based on https://github.com/kurtosis-tech/eth2-merge-kurtosis-module/issues/152
# TODO remove this based on https://github.com/barnabasbusa/eth2-merge-kurtosis-module/issues/152
if len(existing_el_clients) == 0:
fail("Erigon needs at least one node to exist, which it treats as the bootnode")

Expand Down
10 changes: 5 additions & 5 deletions src/el/geth/geth_launcher.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
el_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_client_context.star")
el_admin_node_info = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_admin_node_info.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
el_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_client_context.star")
el_admin_node_info = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_admin_node_info.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")


RPC_PORT_NUM = 8545
Expand Down
10 changes: 5 additions & 5 deletions src/el/nethermind/nethermind_launcher.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/kurtosis-tech/eth-network-package/package_io/input_parser.star")
el_client_context = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_client_context.star")
el_admin_node_info = import_module("github.com/kurtosis-tech/eth-network-package/src/el/el_admin_node_info.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
input_parser = import_module("github.com/barnabasbusa/eth-network-package/package_io/input_parser.star")
el_client_context = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_client_context.star")
el_admin_node_info = import_module("github.com/barnabasbusa/eth-network-package/src/el/el_admin_node_info.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

# The dirpath of the execution data directory on the client container
EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER = "/execution-data"
Expand Down
32 changes: 16 additions & 16 deletions src/participant_network.star
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
cl_validator_keystores = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/cl_validator_keystores/cl_validator_keystore_generator.star")
el_genesis_data_generator = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/el_genesis/el_genesis_data_generator.star")
cl_genesis_data_generator = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/cl_genesis/cl_genesis_data_generator.star")
cl_validator_keystores = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/cl_validator_keystores/cl_validator_keystore_generator.star")
el_genesis_data_generator = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/el_genesis/el_genesis_data_generator.star")
cl_genesis_data_generator = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/cl_genesis/cl_genesis_data_generator.star")

static_files = import_module("github.com/kurtosis-tech/eth-network-package/static_files/static_files.star")
static_files = import_module("github.com/barnabasbusa/eth-network-package/static_files/static_files.star")

geth = import_module("github.com/kurtosis-tech/eth-network-package/src/el/geth/geth_launcher.star")
besu = import_module("github.com/kurtosis-tech/eth-network-package/src/el/besu/besu_launcher.star")
erigon = import_module("github.com/kurtosis-tech/eth-network-package/src/el/erigon/erigon_launcher.star")
nethermind = import_module("github.com/kurtosis-tech/eth-network-package/src/el/nethermind/nethermind_launcher.star")
geth = import_module("github.com/barnabasbusa/eth-network-package/src/el/geth/geth_launcher.star")
besu = import_module("github.com/barnabasbusa/eth-network-package/src/el/besu/besu_launcher.star")
erigon = import_module("github.com/barnabasbusa/eth-network-package/src/el/erigon/erigon_launcher.star")
nethermind = import_module("github.com/barnabasbusa/eth-network-package/src/el/nethermind/nethermind_launcher.star")


lighthouse = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/lighthouse/lighthouse_launcher.star")
lodestar = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/lodestar/lodestar_launcher.star")
nimbus = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/nimbus/nimbus_launcher.star")
prysm = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/prysm/prysm_launcher.star")
teku = import_module("github.com/kurtosis-tech/eth-network-package/src/cl/teku/teku_launcher.star")
lighthouse = import_module("github.com/barnabasbusa/eth-network-package/src/cl/lighthouse/lighthouse_launcher.star")
lodestar = import_module("github.com/barnabasbusa/eth-network-package/src/cl/lodestar/lodestar_launcher.star")
nimbus = import_module("github.com/barnabasbusa/eth-network-package/src/cl/nimbus/nimbus_launcher.star")
prysm = import_module("github.com/barnabasbusa/eth-network-package/src/cl/prysm/prysm_launcher.star")
teku = import_module("github.com/barnabasbusa/eth-network-package/src/cl/teku/teku_launcher.star")

genesis_constants = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/genesis_constants/genesis_constants.star")
participant_module = import_module("github.com/kurtosis-tech/eth-network-package/src/participant.star")
genesis_constants = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/genesis_constants/genesis_constants.star")
participant_module = import_module("github.com/barnabasbusa/eth-network-package/src/participant.star")

package_io = import_module("github.com/kurtosis-tech/eth-network-package/package_io/constants.star")
package_io = import_module("github.com/barnabasbusa/eth-network-package/package_io/constants.star")

CL_CLIENT_SERVICE_NAME_PREFIX = "cl-client-"
EL_CLIENT_SERVICE_NAME_PREFIX = "el-client-"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
cl_genesis_data = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/cl_genesis/cl_genesis_data.star")
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
cl_genesis_data = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/cl_genesis/cl_genesis_data.star")
prelaunch_data_generator_launcher = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")


# Needed to copy the JWT secret and the EL genesis.json file
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
prelaunch_data_generator_launcher = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")
prelaunch_data_generator_launcher = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star")

shared_utils = import_module("github.com/kurtosis-tech/eth-network-package/shared_utils/shared_utils.star")
keystore_files_module = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/cl_validator_keystores/keystore_files.star")
keystores_result = import_module("github.com/kurtosis-tech/eth-network-package/src/prelaunch_data_generator/cl_validator_keystores/generate_keystores_result.star")
shared_utils = import_module("github.com/barnabasbusa/eth-network-package/shared_utils/shared_utils.star")
keystore_files_module = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/cl_validator_keystores/keystore_files.star")
keystores_result = import_module("github.com/barnabasbusa/eth-network-package/src/prelaunch_data_generator/cl_validator_keystores/generate_keystores_result.star")


NODE_KEYSTORES_OUTPUT_DIRPATH_FORMAT_STR = "/node-{0}-keystores"
Expand Down
Loading

0 comments on commit 59ec1d7

Please sign in to comment.