From c8e424e3c2a18601b44ce758312aaddd90aacd92 Mon Sep 17 00:00:00 2001 From: Eugene Dobry Date: Fri, 10 Jan 2025 17:57:19 -0500 Subject: [PATCH] rename observability constants.star to observability.star --- main.star | 2 +- network_params.yaml | 2 ++ src/batcher/op-batcher/op_batcher_launcher.star | 2 +- src/challenger/op-challenger/op_challenger_launcher.star | 2 +- src/cl/hildr/hildr_launcher.star | 2 +- src/cl/op-node/op_node_launcher.star | 2 +- src/el/op-besu/op_besu_launcher.star | 2 +- src/el/op-erigon/op_erigon_launcher.star | 2 +- src/el/op-geth/op_geth_launcher.star | 2 +- src/el/op-nethermind/op_nethermind_launcher.star | 2 +- src/el/op-reth/op_reth_launcher.star | 2 +- src/el_cl_launcher.star | 2 +- src/interop/op-supervisor/op_supervisor_launcher.star | 2 +- src/observability/{constants.star => observability.star} | 0 src/proposer/op-proposer/op_proposer_launcher.star | 2 +- 15 files changed, 15 insertions(+), 13 deletions(-) rename src/observability/{constants.star => observability.star} (100%) diff --git a/main.star b/main.star index d96b0c25..7e847ea7 100644 --- a/main.star +++ b/main.star @@ -5,7 +5,7 @@ op_supervisor_launcher = import_module( "./src/interop/op-supervisor/op_supervisor_launcher.star" ) -observability = import_module("./src/observability/constants.star") +observability = import_module("./src/observability/observability.star") prometheus = import_module("./src/observability/prometheus/prometheus_launcher.star") wait_for_sync = import_module("./src/wait/wait_for_sync.star") diff --git a/network_params.yaml b/network_params.yaml index 5e50bc99..d6ce6b96 100644 --- a/network_params.yaml +++ b/network_params.yaml @@ -62,3 +62,5 @@ ethereum_package: } } ' + ethereum_genesis_generator_params: + image: ethpandaops/ethereum-genesis-generator:3.5.1 diff --git a/src/batcher/op-batcher/op_batcher_launcher.star b/src/batcher/op-batcher/op_batcher_launcher.star index 4b7e0d5f..6fcecfa3 100644 --- a/src/batcher/op-batcher/op_batcher_launcher.star +++ b/src/batcher/op-batcher/op_batcher_launcher.star @@ -6,7 +6,7 @@ ethereum_package_constants = import_module( "github.com/ethpandaops/ethereum-package/src/package_io/constants.star" ) -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") prometheus = import_module("../../observability/prometheus/prometheus_launcher.star") # diff --git a/src/challenger/op-challenger/op_challenger_launcher.star b/src/challenger/op-challenger/op_challenger_launcher.star index 63ea6cd3..e0c53eee 100644 --- a/src/challenger/op-challenger/op_challenger_launcher.star +++ b/src/challenger/op-challenger/op_challenger_launcher.star @@ -6,7 +6,7 @@ ethereum_package_constants = import_module( "github.com/ethpandaops/ethereum-package/src/package_io/constants.star" ) -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") prometheus = import_module("../../observability/prometheus/prometheus_launcher.star") # diff --git a/src/cl/hildr/hildr_launcher.star b/src/cl/hildr/hildr_launcher.star index 43d49b9c..f74cb39d 100644 --- a/src/cl/hildr/hildr_launcher.star +++ b/src/cl/hildr/hildr_launcher.star @@ -15,7 +15,7 @@ ethereum_package_input_parser = import_module( ) constants = import_module("../../package_io/constants.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") util = import_module("../../util.star") diff --git a/src/cl/op-node/op_node_launcher.star b/src/cl/op-node/op_node_launcher.star index f5be9116..baf69ff1 100644 --- a/src/cl/op-node/op_node_launcher.star +++ b/src/cl/op-node/op_node_launcher.star @@ -17,7 +17,7 @@ ethereum_package_input_parser = import_module( constants = import_module("../../package_io/constants.star") util = import_module("../../util.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") interop_constants = import_module("../../interop/constants.star") # ---------------------------------- Beacon client ------------------------------------- diff --git a/src/el/op-besu/op_besu_launcher.star b/src/el/op-besu/op_besu_launcher.star index 1a144822..c9ceda7b 100644 --- a/src/el/op-besu/op_besu_launcher.star +++ b/src/el/op-besu/op_besu_launcher.star @@ -23,7 +23,7 @@ ethereum_package_constants = import_module( ) constants = import_module("../../package_io/constants.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") RPC_PORT_NUM = 8545 WS_PORT_NUM = 8546 diff --git a/src/el/op-erigon/op_erigon_launcher.star b/src/el/op-erigon/op_erigon_launcher.star index 7dd459b4..38d85e77 100644 --- a/src/el/op-erigon/op_erigon_launcher.star +++ b/src/el/op-erigon/op_erigon_launcher.star @@ -21,7 +21,7 @@ ethereum_package_constants = import_module( ) constants = import_module("../../package_io/constants.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") RPC_PORT_NUM = 8545 WS_PORT_NUM = 8546 diff --git a/src/el/op-geth/op_geth_launcher.star b/src/el/op-geth/op_geth_launcher.star index 901f63ea..83a2bb0b 100644 --- a/src/el/op-geth/op_geth_launcher.star +++ b/src/el/op-geth/op_geth_launcher.star @@ -22,7 +22,7 @@ ethereum_package_constants = import_module( ) constants = import_module("../../package_io/constants.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") interop_constants = import_module("../../interop/constants.star") RPC_PORT_NUM = 8545 diff --git a/src/el/op-nethermind/op_nethermind_launcher.star b/src/el/op-nethermind/op_nethermind_launcher.star index aa458e36..a8286b42 100644 --- a/src/el/op-nethermind/op_nethermind_launcher.star +++ b/src/el/op-nethermind/op_nethermind_launcher.star @@ -22,7 +22,7 @@ ethereum_package_constants = import_module( ) constants = import_module("../../package_io/constants.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") RPC_PORT_NUM = 8545 WS_PORT_NUM = 8546 diff --git a/src/el/op-reth/op_reth_launcher.star b/src/el/op-reth/op_reth_launcher.star index d164ce56..a519bd73 100644 --- a/src/el/op-reth/op_reth_launcher.star +++ b/src/el/op-reth/op_reth_launcher.star @@ -21,7 +21,7 @@ ethereum_package_input_parser = import_module( ) constants = import_module("../../package_io/constants.star") -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") RPC_PORT_NUM = 8545 WS_PORT_NUM = 8546 diff --git a/src/el_cl_launcher.star b/src/el_cl_launcher.star index 37ff12f2..4f2d7340 100644 --- a/src/el_cl_launcher.star +++ b/src/el_cl_launcher.star @@ -8,7 +8,7 @@ ethereum_package_input_parser = import_module( input_parser = import_module("./package_io/input_parser.star") -observability = import_module("./observability/constants.star") +observability = import_module("./observability/observability.star") # EL op_geth = import_module("./el/op-geth/op_geth_launcher.star") diff --git a/src/interop/op-supervisor/op_supervisor_launcher.star b/src/interop/op-supervisor/op_supervisor_launcher.star index 369e086c..457967f4 100644 --- a/src/interop/op-supervisor/op_supervisor_launcher.star +++ b/src/interop/op-supervisor/op_supervisor_launcher.star @@ -8,7 +8,7 @@ ethereum_package_constants = import_module( "github.com/ethpandaops/ethereum-package/src/package_io/constants.star" ) -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") prometheus = import_module("../../observability/prometheus/prometheus_launcher.star") interop_constants = import_module("../constants.star") diff --git a/src/observability/constants.star b/src/observability/observability.star similarity index 100% rename from src/observability/constants.star rename to src/observability/observability.star diff --git a/src/proposer/op-proposer/op_proposer_launcher.star b/src/proposer/op-proposer/op_proposer_launcher.star index 67b538f1..947604b8 100644 --- a/src/proposer/op-proposer/op_proposer_launcher.star +++ b/src/proposer/op-proposer/op_proposer_launcher.star @@ -6,7 +6,7 @@ ethereum_package_constants = import_module( "github.com/ethpandaops/ethereum-package/src/package_io/constants.star" ) -observability = import_module("../../observability/constants.star") +observability = import_module("../../observability/observability.star") prometheus = import_module("../../observability/prometheus/prometheus_launcher.star") #