@gooddollar/goodprotocol 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/scripts/deployFullDAO.ts
CHANGED
|
@@ -293,7 +293,7 @@ const deployBridge = async (Avatar, gd, setSchemes, isMainnet) => {
|
|
|
293
293
|
.then(printDeploy)) as Contract;
|
|
294
294
|
await setSchemes([scheme.address]);
|
|
295
295
|
|
|
296
|
-
if (network.name.includes("develop")) {
|
|
296
|
+
if (network.name.includes("develop") || network.name.includes("dapptest")) {
|
|
297
297
|
const mockBridge = (await new ethers.ContractFactory(
|
|
298
298
|
BridgeMock.abi,
|
|
299
299
|
BridgeMock.bytecode,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import fse from "fs-extra";
|
|
2
2
|
import { ethers, network as networkData } from "hardhat";
|
|
3
|
-
import settings from "
|
|
4
|
-
import deployment from "
|
|
5
|
-
import { increaseTime, advanceBlocks } from "
|
|
3
|
+
import settings from "../../releases/deploy-settings.json";
|
|
4
|
+
import deployment from "../../releases/deployment.json";
|
|
5
|
+
import { increaseTime, advanceBlocks } from "../../test/helpers";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* helper script to simulate enough days of interest transfer and claiming
|