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("PayloadIGP13", [])
|
||
|
await payload.waitForDeployment()
|
||
|
|
||
|
console.log("PayloadIGP13: ", payload.target)
|
||
|
console.log()
|
||
|
}
|
||
|
|
||
|
main()
|
||
|
.then(() => process.exit(0))
|
||
|
.catch(error => {
|
||
|
console.error(error);
|
||
|
process.exit(1);
|
||
|
});
|