UNPKG

@safe-global/safe-contracts

Version:
13 lines (10 loc) 390 B
import "hardhat-deploy"; import "@nomiclabs/hardhat-ethers"; import { task } from "hardhat/config"; 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" }); }); export {};