UNPKG

@safe-global/safe-contracts

Version:
26 lines (21 loc) 727 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("TokenCallbackHandler", { from: deployer, args: [], log: true, deterministicDeployment: true, }); await deploy("CompatibilityFallbackHandler", { from: deployer, args: [], log: true, deterministicDeployment: true, }); }; deploy.tags = ["handlers", "l2-suite", "main-suite"]; export default deploy;