2020-11-16 16:55:04 +00:00
|
|
|
const { sleep } = require("@gelatonetwork/core");
|
2020-11-04 12:21:01 +00:00
|
|
|
|
|
|
|
module.exports = async (hre) => {
|
|
|
|
if (hre.network.name === "mainnet") {
|
2020-11-28 18:32:43 +00:00
|
|
|
console.log("\n\n Deploying MockCDAI to mainnet. Hit ctrl + c to abort");
|
2020-11-17 07:29:09 +00:00
|
|
|
await sleep(10000);
|
2020-11-04 12:21:01 +00:00
|
|
|
}
|
|
|
|
|
2020-11-16 16:55:04 +00:00
|
|
|
const { deployments } = hre;
|
|
|
|
const { deploy } = deployments;
|
|
|
|
const { deployer } = await hre.getNamedAccounts();
|
2020-11-04 12:21:01 +00:00
|
|
|
|
|
|
|
const APY_2_PERCENT_IN_SECONDS = "1000000000627937192491029810";
|
|
|
|
|
|
|
|
// the following will only deploy "MockCDAI"
|
|
|
|
// if the contract was never deployed or if the code changed since last deployment
|
|
|
|
await deploy("MockCDAI", {
|
|
|
|
from: deployer,
|
|
|
|
args: [APY_2_PERCENT_IN_SECONDS],
|
|
|
|
gasPrice: hre.network.config.gasPrice,
|
|
|
|
log: hre.network.name === "mainnet" ? true : false,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports.skip = async (hre) => {
|
|
|
|
return hre.network.name === "mainnet" ? true : false;
|
|
|
|
};
|
|
|
|
module.exports.tags = ["MockCDAI"];
|