Skip to content

Commit a941306

Browse files
author
Franck
authored
deploy 14 (#556)
* rinkeby deploy 14 * mainnet depoy 14 * do not delete the zombie mock contract
1 parent 162686f commit a941306

21 files changed

+5369
-149
lines changed

contracts/deploy/014_3pool_strategy.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const {
44
isFork,
55
isRinkeby,
66
isMainnetOrRinkebyOrFork,
7+
isSmokeTest,
78
} = require("../test/helpers.js");
89
const {
910
log,
@@ -174,6 +175,6 @@ const main = async (hre) => {
174175

175176
main.id = deployName;
176177
main.dependencies = ["013_trustee"];
177-
main.skip = () => !isMainnetOrRinkebyOrFork;
178+
main.skip = () => !(isMainnet || isRinkeby || isFork) || isSmokeTest;
178179

179180
module.exports = main;

contracts/deployments/mainnet/.migrations.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"011_ousd_fix": 1610148010,
1111
"005_compensation_claims": 1610487584,
1212
"012_upgrades": 1612303613,
13-
"013_trustee": 1612380836
13+
"013_trustee": 1612380836,
14+
"014_3pool_strategy": 1612999718
1415
}

contracts/deployments/mainnet/AaveStrategy.json

Lines changed: 33 additions & 21 deletions
Large diffs are not rendered by default.

contracts/deployments/mainnet/CompoundStrategy.json

Lines changed: 32 additions & 20 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)