UNPKG

@safe-global/safe-contracts

Version:
12 lines (11 loc) 477 B
"use strict"; 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" }); });