From 32f51d85848221ed7ec4f199c73af975d6e7d0b8 Mon Sep 17 00:00:00 2001 From: Thrilok kumar Date: Thu, 21 Mar 2024 19:26:16 -0400 Subject: [PATCH] fix --- scripts/deployIGP14.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/deployIGP14.js b/scripts/deployIGP14.js index fa4146c..d685263 100644 --- a/scripts/deployIGP14.js +++ b/scripts/deployIGP14.js @@ -2,14 +2,14 @@ const hre = require("hardhat"); const { ethers } = hre; async function main() { - // const PayloadIGP14 = await ethers.getContractFactory("PayloadIGP14") - // const payloadIGP14 = await PayloadIGP14.deploy() - // await payloadIGP14.deployed() + const PayloadIGP14 = await ethers.getContractFactory("PayloadIGP14") + const payloadIGP14 = await PayloadIGP14.deploy() + await payloadIGP14.deployed() - // console.log("PayloadIGP14: ", payloadIGP14.address) + console.log("PayloadIGP14: ", payloadIGP14.address) await hre.run("verify:verify", { - address: "0x9C5F9e5987EBc5cb589215d6cE9Af8FE72560AE8", + address: payloadIGP14.address, constructorArguments: [] }) }