diff --git a/packages/plugin-hardhat/src/utils/options.ts b/packages/plugin-hardhat/src/utils/options.ts index c4a913747..dec1b70de 100644 --- a/packages/plugin-hardhat/src/utils/options.ts +++ b/packages/plugin-hardhat/src/utils/options.ts @@ -15,12 +15,12 @@ export type DeployFactoryOpts = { /** * Allows to customize the proxyFactory used instead of the ones defined in utils/factories.ts */ - proxyFactory?: null | Function; + proxyFactory?: null | (() => Promise); /** * Allows to customize the deploy function used instead of utils/deploy.ts:deploy */ - deployFunction?: null | Function; + deployFunction?: null | (() => Promise); }; /**