2020-11-04 17:09:34 +00:00
|
|
|
const hre = require("hardhat");
|
|
|
|
const {ethers} = hre;
|
|
|
|
|
2020-11-04 12:21:01 +00:00
|
|
|
const {sleep} = require("@gelatonetwork/core");
|
|
|
|
|
|
|
|
const InstaConnector = require("../../pre-compiles/InstaConnectors.json");
|
|
|
|
|
|
|
|
module.exports = async (hre) => {
|
|
|
|
if (hre.network.name === "mainnet") {
|
|
|
|
console.log(
|
2020-11-10 15:52:38 +00:00
|
|
|
"Deploying ConnectGelatoDataFullRefinanceMaker to mainnet. Hit ctrl + c to abort"
|
2020-11-04 12:21:01 +00:00
|
|
|
);
|
|
|
|
await sleep(10000);
|
|
|
|
}
|
|
|
|
|
|
|
|
const {deployments} = hre;
|
|
|
|
const {deploy} = deployments;
|
|
|
|
const {deployer} = await hre.getNamedAccounts();
|
|
|
|
|
|
|
|
const instaConnectors = await hre.ethers.getContractAt(
|
|
|
|
InstaConnector.abi,
|
|
|
|
hre.network.config.InstaConnectors
|
|
|
|
);
|
|
|
|
const connectorLength = await instaConnectors.connectorLength();
|
|
|
|
const connectorId = connectorLength.add(1);
|
|
|
|
|
2020-11-10 15:52:38 +00:00
|
|
|
// the following will only deploy "ConnectGelatoDataFullRefinanceMaker"
|
2020-11-04 12:21:01 +00:00
|
|
|
// if the contract was never deployed or if the code changed since last deployment
|
2020-11-10 15:52:38 +00:00
|
|
|
await deploy("ConnectGelatoDataFullRefinanceMaker", {
|
2020-11-04 12:21:01 +00:00
|
|
|
from: deployer,
|
|
|
|
args: [
|
|
|
|
connectorId,
|
|
|
|
(await deployments.get("ConnectGelatoProviderPayment")).address,
|
|
|
|
],
|
|
|
|
gasPrice: hre.network.config.gasPrice,
|
|
|
|
log: hre.network.name === "mainnet" ? true : false,
|
|
|
|
});
|
2020-11-04 17:09:34 +00:00
|
|
|
|
|
|
|
if (hre.network.name === "hardhat") {
|
|
|
|
const deployerWallet = await ethers.provider.getSigner(deployer);
|
|
|
|
const instaMaster = await ethers.provider.getSigner(
|
|
|
|
hre.network.config.InstaMaster
|
|
|
|
);
|
|
|
|
|
|
|
|
await deployerWallet.sendTransaction({
|
|
|
|
to: await instaMaster.getAddress(),
|
|
|
|
value: ethers.utils.parseEther("0.1"),
|
|
|
|
});
|
|
|
|
|
|
|
|
await hre.network.provider.request({
|
|
|
|
method: "hardhat_impersonateAccount",
|
|
|
|
params: [await instaMaster.getAddress()],
|
|
|
|
});
|
|
|
|
|
|
|
|
await instaConnectors
|
|
|
|
.connect(instaMaster)
|
|
|
|
.enable(
|
2020-11-10 15:52:38 +00:00
|
|
|
(await ethers.getContract("ConnectGelatoDataFullRefinanceMaker"))
|
|
|
|
.address
|
2020-11-04 17:09:34 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
await hre.network.provider.request({
|
|
|
|
method: "hardhat_stopImpersonatingAccount",
|
|
|
|
params: [await instaMaster.getAddress()],
|
|
|
|
});
|
|
|
|
}
|
2020-11-04 12:21:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports.dependencies = ["ConnectGelatoProviderPayment"];
|
2020-11-10 15:52:38 +00:00
|
|
|
module.exports.tags = ["ConnectGelatoDataFullRefinanceMaker"];
|