Skip to content

Commit

Permalink
Fix broken imports (#98)
Browse files Browse the repository at this point in the history
* v0.0.39

* fix imports
  • Loading branch information
ncitron authored Jun 11, 2021
1 parent 465a916 commit 26c06b9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@setprotocol/set-protocol-v2",
"version": "0.0.38",
"version": "0.0.39",
"description": "",
"main": "dist",
"types": "dist/types",
Expand Down
10 changes: 5 additions & 5 deletions utils/fixtures/uniswapV3Fixture.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import DeployHelper from "@utils/deploys";
import { MAX_UINT_256 } from "@utils/constants";
import DeployHelper from "../deploys";
import { MAX_UINT_256 } from "../constants";
import { JsonRpcProvider, Web3Provider } from "@ethersproject/providers";
import { BigNumber, BigNumberish, Signer } from "ethers";
import { Address } from "../types";
Expand All @@ -15,9 +15,9 @@ import {
} from "../contracts/uniswapV3";

import { UniswapV3Pool__factory } from "../../typechain/factories/UniswapV3Pool__factory";
import { ether } from "@utils/common";
import { StandardTokenMock } from "@typechain/StandardTokenMock";
import { WETH9 } from "@typechain/WETH9";
import { ether } from "../index";
import { StandardTokenMock } from "../../typechain/StandardTokenMock";
import { WETH9 } from "../../typechain/WETH9";
import { parseEther } from "ethers/lib/utils";

type Token = StandardTokenMock | WETH9;
Expand Down
3 changes: 1 addition & 2 deletions utils/test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
import { ethers } from "hardhat";
import { Address } from "../types";

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

// Hardhat-Provider Aware Exports
const provider = ethers.provider;
Expand Down

0 comments on commit 26c06b9

Please sign in to comment.