mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
const hre = require("hardhat");
|
|
const { ethers } = hre;
|
|
|
|
async function main() {
|
|
const payload = await ethers.deployContract("PayloadIGP16", [])
|
|
await payload.waitForDeployment()
|
|
|
|
console.log("PayloadIGP16: ", payload.target)
|
|
console.log()
|
|
}
|
|
|
|
main()
|
|
.then(() => process.exit(0))
|
|
.catch(error => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|