mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
deployment
This commit is contained in:
parent
9584c8148a
commit
2ac4e3ec71
File diff suppressed because one or more lines are too long
1
deployments/mainnet_1/PayloadIGP14.json
Normal file
1
deployments/mainnet_1/PayloadIGP14.json
Normal file
File diff suppressed because one or more lines are too long
22
scripts/deployIGP14.js
Normal file
22
scripts/deployIGP14.js
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
const hre = require("hardhat");
|
||||||
|
const { ethers } = hre;
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
// const PayloadIGP14 = await ethers.getContractFactory("PayloadIGP14")
|
||||||
|
// const payloadIGP14 = await PayloadIGP14.deploy()
|
||||||
|
// await payloadIGP14.deployed()
|
||||||
|
|
||||||
|
// console.log("PayloadIGP14: ", payloadIGP14.address)
|
||||||
|
|
||||||
|
await hre.run("verify:verify", {
|
||||||
|
address: "0x9C5F9e5987EBc5cb589215d6cE9Af8FE72560AE8",
|
||||||
|
constructorArguments: []
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
main()
|
||||||
|
.then(() => process.exit(0))
|
||||||
|
.catch(error => {
|
||||||
|
console.error(error);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
|
@ -2,10 +2,10 @@ const hre = require("hardhat");
|
||||||
const { ethers } = hre;
|
const { ethers } = hre;
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
const payload = await ethers.deployContract("PayloadIGP13", [])
|
const payload = await ethers.deployContract("PayloadIGP14", [])
|
||||||
await payload.waitForDeployment()
|
await payload.waitForDeployment()
|
||||||
|
|
||||||
console.log("PayloadIGP13: ", payload.target)
|
console.log("PayloadIGP14: ", payload.target)
|
||||||
console.log()
|
console.log()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user