UNPKG

@safe-global/safe-contracts

Version:
19 lines (15 loc) 562 B
import { DeployFunction } from "hardhat-deploy/types"; import { HardhatRuntimeEnvironment } from "hardhat/types"; const deploy: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { const { deployments, getNamedAccounts } = hre; const { deployer } = await getNamedAccounts(); const { deploy } = deployments; await deploy("SafeProxyFactory", { from: deployer, args: [], log: true, deterministicDeployment: true, }); }; deploy.tags = ["factory", "l2-suite", "main-suite"]; export default deploy;