Skip to content

Commit

Permalink
deploy 14 (#556)
Browse files Browse the repository at this point in the history
* rinkeby deploy 14

* mainnet depoy 14

* do not delete the zombie mock contract
  • Loading branch information
franckc committed Feb 10, 2021
1 parent 162686f commit a941306
Show file tree
Hide file tree
Showing 21 changed files with 5,369 additions and 149 deletions.
3 changes: 2 additions & 1 deletion contracts/deploy/014_3pool_strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const {
isFork,
isRinkeby,
isMainnetOrRinkebyOrFork,
isSmokeTest,
} = require("../test/helpers.js");
const {
log,
Expand Down Expand Up @@ -174,6 +175,6 @@ const main = async (hre) => {

main.id = deployName;
main.dependencies = ["013_trustee"];
main.skip = () => !isMainnetOrRinkebyOrFork;
main.skip = () => !(isMainnet || isRinkeby || isFork) || isSmokeTest;

module.exports = main;
3 changes: 2 additions & 1 deletion contracts/deployments/mainnet/.migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"011_ousd_fix": 1610148010,
"005_compensation_claims": 1610487584,
"012_upgrades": 1612303613,
"013_trustee": 1612380836
"013_trustee": 1612380836,
"014_3pool_strategy": 1612999718
}
54 changes: 33 additions & 21 deletions contracts/deployments/mainnet/AaveStrategy.json

Large diffs are not rendered by default.

52 changes: 32 additions & 20 deletions contracts/deployments/mainnet/CompoundStrategy.json

Large diffs are not rendered by default.

0 comments on commit a941306

Please sign in to comment.