mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
27 lines
616 B
JavaScript
27 lines
616 B
JavaScript
const hre = require("hardhat");
|
|
const { ethers, deployments, getUnnamedAccounts } = hre;
|
|
const { deploy } = deployments;
|
|
|
|
|
|
async function main() {
|
|
|
|
const deployer = (await getUnnamedAccounts())[0]
|
|
|
|
const connector = "ConnectV2InstaPoolV3Avalanche"
|
|
|
|
const connectorInstance = await deploy(connector, {
|
|
from: deployer,
|
|
})
|
|
console.log(`${connector} deployed: `, connectorInstance.address);
|
|
|
|
await hre.run("sourcify", {
|
|
address: connectorInstance.address,
|
|
})
|
|
}
|
|
|
|
main()
|
|
.then(() => process.exit(0))
|
|
.catch(error => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
}); |