@safe-global/safe-contracts
Version:
Ethereum multisig contract
26 lines (21 loc) • 727 B
text/typescript
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;