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

@ -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;