IGP11 deployed

This commit is contained in:
Thrilok kumar 2024-03-14 01:05:28 -04:00
parent ad7163c932
commit d145743932
2 changed files with 23 additions and 0 deletions

File diff suppressed because one or more lines are too long

22
scripts/deployIGP11.js Normal file
View File

@ -0,0 +1,22 @@
const hre = require("hardhat");
const { ethers } = hre;
async function main() {
const PayloadIGP11 = await ethers.getContractFactory("PayloadIGP11")
const payloadIGP11 = await PayloadIGP11.deploy()
await payloadIGP11.deployed()
console.log("PayloadIGP11: ", payloadIGP11.address)
await hre.run("verify:verify", {
address: payloadIGP11.address,
constructorArguments: []
})
}
main()
.then(() => process.exit(0))
.catch(error => {
console.error(error);
process.exit(1);
});