@safe-global/safe-contracts
Version:
Ethereum multisig contract
12 lines (11 loc) • 477 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
require("hardhat-deploy");
require("@nomiclabs/hardhat-ethers");
const config_1 = require("hardhat/config");
(0, config_1.task)("deploy-contracts", "Deploys and verifies Safe contracts").setAction(async (_, hre) => {
await hre.run("deploy");
await hre.run("local-verify");
await hre.run("sourcify");
await hre.run("etherscan-verify", { forceLicense: true, license: "LGPL-3.0" });
});
;