import { DeployFunction } from "hardhat-deploy/types"; import { HardhatRuntimeEnvironment } from "hardhat/types"; const deploy: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { const { deployer: deployerAccount } = await hre.getNamedAccounts(); await hre.deployments.deploy("Safe", { from: deployerAccount, args: [], log: true, deterministicDeployment: true, }); }; deploy.tags = ["singleton", "main-suite"]; export default deploy;