From e44a6c43b7e93d7b29f6f74605bb62402b7354f8 Mon Sep 17 00:00:00 2001 From: Adam Gall Date: Fri, 1 Nov 2024 12:35:18 -0400 Subject: [PATCH] Whoops, fix contract name --- deploy/core/017_deploy_DecentAutonomousAdmin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/core/017_deploy_DecentAutonomousAdmin.ts b/deploy/core/017_deploy_DecentAutonomousAdmin.ts index a04d62d..224f4e9 100644 --- a/deploy/core/017_deploy_DecentAutonomousAdmin.ts +++ b/deploy/core/017_deploy_DecentAutonomousAdmin.ts @@ -3,7 +3,7 @@ import { DeployFunction } from 'hardhat-deploy/types'; import { deployNonUpgradeable } from '../helpers/deployNonUpgradeable'; const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => { - await deployNonUpgradeable(hre, 'DecentAutonomousAdmin'); + await deployNonUpgradeable(hre, 'DecentAutonomousAdminV1'); }; export default func;