mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
IGP11 deployed
This commit is contained in:
parent
ad7163c932
commit
d145743932
1
deployments/mainnet_1/PayloadIGP11.json
Normal file
1
deployments/mainnet_1/PayloadIGP11.json
Normal file
File diff suppressed because one or more lines are too long
22
scripts/deployIGP11.js
Normal file
22
scripts/deployIGP11.js
Normal 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);
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user