diff --git a/scripts/deploy_managed_allow_list.py b/scripts/deploy_managed_allow_list.py deleted file mode 100644 index 0288ccc4..00000000 --- a/scripts/deploy_managed_allow_list.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/python3 - -from ape import project - -from deployment.constants import ARTIFACTS_DIR, CONSTRUCTOR_PARAMS_DIR -from deployment.params import Deployer -from deployment.registry import merge_registries - -VERIFY = False -CONSTRUCTOR_PARAMS_FILEPATH = CONSTRUCTOR_PARAMS_DIR / "managed_allow_list.yml" -LYNX = ARTIFACTS_DIR / "lynx.json" -TAPIR = ARTIFACTS_DIR / "tapir.json" - - -def main(): - deployer = Deployer.from_yaml(filepath=CONSTRUCTOR_PARAMS_FILEPATH, verify=VERIFY) - managed_allow_list = deployer.deploy(project.ManagedAllowList) - deployments = [managed_allow_list] - deployer.finalize(deployments=deployments) - - for domain in (LYNX, TAPIR): - merge_registries( - registry_1_filepath=domain, - registry_2_filepath=deployer.registry_filepath, - output_filepath=domain, - )