chore: included connector ID reminder in deploy scripts

This commit is contained in:
gitpusha 2020-11-16 18:20:34 +01:00 committed by Twin Fish
parent 5ef4195b6a
commit 2056c26357
16 changed files with 19 additions and 17 deletions

View File

@ -3,5 +3,4 @@ artifacts
cache
assets
coverage
contracts/constants
contracts/vendor

View File

@ -1,6 +1,6 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
function GAS_COSTS_FOR_FULL_REFINANCE() pure returns(uint256[4] memory) {
function GAS_COSTS_FOR_FULL_REFINANCE() pure returns (uint256[4] memory) {
return [uint256(2519000), 3140500, 3971000, 4345000];
}
}

View File

@ -15,4 +15,4 @@ address constant DAI = 0x6B175474E89094C44Da98b954EedeAC495271d0F;
// Insta Pool
address constant INSTA_POOL_RESOLVER = 0xa004a5afBa04b74037E9E52bA1f7eb02b5E61509;
uint256 constant ROUTE_1_TOLERANCE = 1005e15;
uint256 constant ROUTE_1_TOLERANCE = 1005e15;

View File

@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
address constant MCD_MANAGER = 0x5ef30b9986345249bc32d8928B7ee64DE9435E39;
address constant MCD_MANAGER = 0x5ef30b9986345249bc32d8928B7ee64DE9435E39;

View File

@ -10,7 +10,8 @@ module.exports = async (hre) => {
console.log(
"Deploying ConnectGelatoDataFullRefinanceMaker to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
console.log("❗ CONNECTOR DEPLOYMENT: VERIFY & HARDCODE CONNECTOR ID");
await sleep(6000);
}
const { deployments } = hre;

View File

@ -10,7 +10,8 @@ module.exports = async (hre) => {
console.log(
"Deploying ConnectGelatoDataPartialRefinanceMaker to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
console.log("❗ CONNECTOR DEPLOYMENT: VERIFY & HARDCODE CONNECTOR ID");
await sleep(6000);
}
const { deployments } = hre;

View File

@ -10,7 +10,8 @@ module.exports = async (hre) => {
console.log(
"Deploying ConnectGelatoProviderPayment to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
console.log("❗ CONNECTOR DEPLOYMENT: VERIFY & HARDCODE CONNECTOR ID");
await sleep(6000);
}
const { deployments } = hre;
const { deploy } = deployments;

View File

@ -5,7 +5,7 @@ module.exports = async (hre) => {
console.log(
"Deploying ConditionCompareUintsFromTwoSources to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -5,7 +5,7 @@ module.exports = async (hre) => {
console.log(
"Deploying ConditionDebtBridgeIsAffordable to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -5,7 +5,7 @@ module.exports = async (hre) => {
console.log(
"Deploying ConditionMakerVaultUnsafe to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -5,7 +5,7 @@ module.exports = async (hre) => {
console.log(
"Deploying FGelatoDebtBridgeMock to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -5,7 +5,7 @@ module.exports = async (hre) => {
console.log(
"Deploying FGelatoDebtBridgeMock to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -3,7 +3,7 @@ const { sleep } = require("@gelatonetwork/core");
module.exports = async (hre) => {
if (hre.network.name === "mainnet") {
console.log("Deploying MockCDAI to mainnet. Hit ctrl + c to abort");
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -3,7 +3,7 @@ const { sleep } = require("@gelatonetwork/core");
module.exports = async (hre) => {
if (hre.network.name === "mainnet") {
console.log("Deploying MockDSR to mainnet. Hit ctrl + c to abort");
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -8,7 +8,7 @@ module.exports = async (hre) => {
console.log(
"Deploying MockGelatoExecutor to mainnet. Hit ctrl + c to abort"
);
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;

View File

@ -3,7 +3,7 @@ const { sleep } = require("@gelatonetwork/core");
module.exports = async (hre) => {
if (hre.network.name === "mainnet") {
console.log("Deploying MakerResolver to mainnet. Hit ctrl + c to abort");
await sleep(2000);
await sleep(6000);
}
const { deployments } = hre;