Skip to content

Commit 3dfa1ef

Browse files
ncitronrichardliang
authored andcommitted
Fix broken imports (#98)
* v0.0.39 * fix imports
1 parent 55b5bf5 commit 3dfa1ef

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@setprotocol/set-protocol-v2",
3-
"version": "0.0.38",
3+
"version": "0.0.39",
44
"description": "",
55
"main": "dist",
66
"types": "dist/types",

utils/fixtures/uniswapV3Fixture.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import DeployHelper from "@utils/deploys";
2-
import { MAX_UINT_256 } from "@utils/constants";
1+
import DeployHelper from "../deploys";
2+
import { MAX_UINT_256 } from "../constants";
33
import { JsonRpcProvider, Web3Provider } from "@ethersproject/providers";
44
import { BigNumber, BigNumberish, Signer } from "ethers";
55
import { Address } from "../types";
@@ -15,9 +15,9 @@ import {
1515
} from "../contracts/uniswapV3";
1616

1717
import { UniswapV3Pool__factory } from "../../typechain/factories/UniswapV3Pool__factory";
18-
import { ether } from "@utils/common";
19-
import { StandardTokenMock } from "@typechain/StandardTokenMock";
20-
import { WETH9 } from "@typechain/WETH9";
18+
import { ether } from "../index";
19+
import { StandardTokenMock } from "../../typechain/StandardTokenMock";
20+
import { WETH9 } from "../../typechain/WETH9";
2121
import { parseEther } from "ethers/lib/utils";
2222

2323
type Token = StandardTokenMock | WETH9;

utils/test/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
import { ethers } from "hardhat";
33
import { Address } from "../types";
44

5-
import { AaveFixture, BalancerFixture, CompoundFixture, CurveFixture, SystemFixture, UniswapFixture, YearnFixture } from "../fixtures";
5+
import { AaveFixture, BalancerFixture, CompoundFixture, CurveFixture, SystemFixture, UniswapFixture, YearnFixture, UniswapV3Fixture } from "../fixtures";
66
import { Blockchain, ProtocolUtils } from "../common";
7-
import { UniswapV3Fixture } from "@utils/fixtures/uniswapV3Fixture";
87

98
// Hardhat-Provider Aware Exports
109
const provider = ethers.provider;

0 commit comments

Comments
 (0)