mirror of
				https://github.com/Instadapp/dsa-governance.git
				synced 2024-07-29 22:27:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			509 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			509 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 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);
 | |
|   });
 | 
