From 96e16a1a8eea81fbbd76cc65e87930ebaeb6b0a8 Mon Sep 17 00:00:00 2001 From: Guilherme Dantas Date: Wed, 29 May 2024 15:15:47 -0300 Subject: [PATCH] feat: add `QuorumFactory` to deploy script --- deploy/02_factory.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deploy/02_factory.ts b/deploy/02_factory.ts index 1dc32aac..10e5ff22 100644 --- a/deploy/02_factory.ts +++ b/deploy/02_factory.ts @@ -22,6 +22,8 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => { }; const AuthorityFactory = await deployments.deploy("AuthorityFactory", opts); + await deployments.deploy("QuorumFactory", opts); + const ApplicationFactory = await deployments.deploy( "ApplicationFactory", opts,