From 7b576a0978584a81165cf82b1b7a8f9540180de1 Mon Sep 17 00:00:00 2001 From: derekpierre Date: Mon, 25 Sep 2023 21:00:57 -0400 Subject: [PATCH] Update merge lynx script by improving naming/annotations. --- scripts/merge_lynx_deployment_registries.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/merge_lynx_deployment_registries.py b/scripts/merge_lynx_deployment_registries.py index 61102fc9..5feeb38b 100644 --- a/scripts/merge_lynx_deployment_registries.py +++ b/scripts/merge_lynx_deployment_registries.py @@ -1,12 +1,15 @@ from scripts.constants import ARTIFACTS_DIR from scripts.registry import merge_registries -lynx_deployment_registry = ARTIFACTS_DIR / "lynx-alpha-13-registry.json" +lynx_child_deployment_registry = ARTIFACTS_DIR / "lynx" / "lynx-alpha-13-child-registry.json" + +# mumbai registry from `nucypher/nucypher` lynx_registry_w_subscription_manager = ARTIFACTS_DIR / "contract_registry.json" + output_registry = ARTIFACTS_DIR / "lynx-alpha-13-merged-registry.json" merge_registries( - registry_1_filepath=lynx_deployment_registry, + registry_1_filepath=lynx_child_deployment_registry, registry_2_filepath=lynx_registry_w_subscription_manager, output_filepath=output_registry, deprecated_contracts=["StakeInfo"],