Skip to content

Commit

Permalink
Merge pull request #19 from ethpandaops/migrate-to-ethpandaops
Browse files Browse the repository at this point in the history
fix: move all references of kurtosis-tech -> ethpandaops
  • Loading branch information
barnabasbusa authored Jun 13, 2024
2 parents dba4488 + ef05cc4 commit db65cfa
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions main.star
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
input_parser = import_module("./src/package_io/input_parser.star")
ethereum_package = import_module("github.com/kurtosis-tech/ethereum-package/main.star")
ethereum_package = import_module("github.com/ethpandaops/ethereum-package/main.star")
contract_deployer = import_module("./src/contracts/contract_deployer.star")
static_files = import_module(
"github.com/kurtosis-tech/ethereum-package/src/static_files/static_files.star"
"github.com/ethpandaops/ethereum-package/src/static_files/static_files.star"
)
participant_network = import_module("./src/participant_network.star")
blockscout = import_module("./src/blockscout/blockscout_launcher.star")
Expand Down
4 changes: 2 additions & 2 deletions src/batcher/op-batcher/op_batcher_launcher.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)

constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)

#
Expand Down
4 changes: 2 additions & 2 deletions src/blockscout/blockscout_launcher.star
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)
constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)

postgres = import_module("github.com/kurtosis-tech/postgres-package/main.star")
Expand Down
8 changes: 4 additions & 4 deletions src/cl/op-node/op_node_launcher.star
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)

cl_context = import_module(
"github.com/kurtosis-tech/ethereum-package/src/cl/cl_context.star"
"github.com/ethpandaops/ethereum-package/src/cl/cl_context.star"
)

cl_node_ready_conditions = import_module(
"github.com/kurtosis-tech/ethereum-package/src/cl/cl_node_ready_conditions.star"
"github.com/ethpandaops/ethereum-package/src/cl/cl_node_ready_conditions.star"
)
constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)

# ---------------------------------- Beacon client -------------------------------------
Expand Down
10 changes: 5 additions & 5 deletions src/el/op-geth/op_geth_launcher.star
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)
# input_parser = import_module("../../package_io/input_parser.star")
el_context = import_module(
"github.com/kurtosis-tech/ethereum-package/src/el/el_context.star"
"github.com/ethpandaops/ethereum-package/src/el/el_context.star"
)
el_admin_node_info = import_module(
"github.com/kurtosis-tech/ethereum-package/src/el/el_admin_node_info.star"
"github.com/ethpandaops/ethereum-package/src/el/el_admin_node_info.star"
)

node_metrics = import_module(
"github.com/kurtosis-tech/ethereum-package/src/node_metrics_info.star"
"github.com/ethpandaops/ethereum-package/src/node_metrics_info.star"
)
constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)

RPC_PORT_NUM = 8545
Expand Down
10 changes: 5 additions & 5 deletions src/el/op-reth/op_reth_launcher.star
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)
# input_parser = import_module("../../package_io/input_parser.star")
el_context = import_module(
"github.com/kurtosis-tech/ethereum-package/src/el/el_context.star"
"github.com/ethpandaops/ethereum-package/src/el/el_context.star"
)
el_admin_node_info = import_module(
"github.com/kurtosis-tech/ethereum-package/src/el/el_admin_node_info.star"
"github.com/ethpandaops/ethereum-package/src/el/el_admin_node_info.star"
)

node_metrics = import_module(
"github.com/kurtosis-tech/ethereum-package/src/node_metrics_info.star"
"github.com/ethpandaops/ethereum-package/src/node_metrics_info.star"
)
constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)

RPC_PORT_NUM = 8545
Expand Down
4 changes: 2 additions & 2 deletions src/el_cl_launcher.star
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)
# EL
op_geth = import_module("./el/op-geth/op_geth_launcher.star")
Expand Down
2 changes: 1 addition & 1 deletion src/package_io/input_parser.star
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ethereum_package_input_parser = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/input_parser.star"
"github.com/ethpandaops/ethereum-package/src/package_io/input_parser.star"
)

DEFAULT_EL_IMAGES = {
Expand Down
4 changes: 2 additions & 2 deletions src/proposer/op-proposer/op_proposer_launcher.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
shared_utils = import_module(
"github.com/kurtosis-tech/ethereum-package/src/shared_utils/shared_utils.star"
"github.com/ethpandaops/ethereum-package/src/shared_utils/shared_utils.star"
)

constants = import_module(
"github.com/kurtosis-tech/ethereum-package/src/package_io/constants.star"
"github.com/ethpandaops/ethereum-package/src/package_io/constants.star"
)

#
Expand Down

0 comments on commit db65cfa

Please sign in to comment.