From a7ee921eec209c384dcce5ca236d0604ce895922 Mon Sep 17 00:00:00 2001 From: Shebin John Date: Tue, 10 Sep 2024 13:07:19 +0200 Subject: [PATCH] `SafeToL2Setup` deployment script (#823) This PR adds the `SafeToL2Setup` deployment (already added in the `main` with #816) to the release branch for `v1.4.1`. --- src/deploy/deploy_libraries.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/deploy/deploy_libraries.ts b/src/deploy/deploy_libraries.ts index 1da16eb7b..84d81d1e9 100644 --- a/src/deploy/deploy_libraries.ts +++ b/src/deploy/deploy_libraries.ts @@ -33,6 +33,13 @@ const deploy: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { log: true, deterministicDeployment: true, }); + + await deploy("SafeToL2Setup", { + from: deployer, + args: [], + log: true, + deterministicDeployment: true, + }); }; deploy.tags = ["libraries", "l2-suite", "main-suite"];