Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
FlattestWhite committed Oct 1, 2023
1 parent 99f951c commit c4f6939
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
1 change: 0 additions & 1 deletion test/integration/ethereum/addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export const PRODUCTION_ADDRESSES = {
uniV3: {
router: "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45",
quoter: "0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6",
router02: "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45",
},
balancerv2: {
vault: "0xBA12222222228d8Ba445958a75a0704d566BF2C8",
Expand Down
6 changes: 3 additions & 3 deletions utils/deploys/deployExternal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Signer } from "ethers";
import { ether } from "@utils/common";
import { BigNumberish, BigNumber } from "@ethersproject/bignumber";

import {
Expand Down Expand Up @@ -95,9 +96,8 @@ import { SwapRouter__factory } from "../../typechain/factories/SwapRouter__facto
import { NonfungiblePositionManager__factory } from "../../typechain/factories/NonfungiblePositionManager__factory";
import { Quoter__factory } from "../../typechain/factories/Quoter__factory";
import { NFTDescriptor__factory } from "../../typechain/factories/NFTDescriptor__factory";
import { ether } from "@utils/common";
import { SwapRouter02 } from "@typechain/SwapRouter02";
import { SwapRouter02__factory } from "@typechain/factories/SwapRouter02__factory";
import { SwapRouter02 } from "../../typechain/SwapRouter02";
import { SwapRouter02__factory } from "../../typechain/factories/SwapRouter02__factory";


export default class DeployExternalContracts {
Expand Down
12 changes: 7 additions & 5 deletions utils/fixtures/uniswapV3Fixture.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import DeployHelper from "../deploys";
import { MAX_UINT_256 } from "../constants";
import { JsonRpcProvider, Web3Provider } from "@ethersproject/providers";
import { BigNumber, BigNumberish, Signer } from "ethers";
import { parseEther } from "ethers/lib/utils";

import DeployHelper from "../deploys";
import { Account, Address } from "../types";
import { MAX_UINT_256 } from "../constants";

import {
NFTDescriptor,
Expand All @@ -16,9 +18,9 @@ import { UniswapV3Pool__factory } from "../../typechain/factories/UniswapV3Pool_
import { ether } from "../index";
import { StandardTokenMock } from "../../typechain/StandardTokenMock";
import { WETH9 } from "../../typechain/WETH9";
import { parseEther } from "ethers/lib/utils";
import { SwapRouter02 } from "@typechain/SwapRouter02";
import { UniswapV2Factory } from "@typechain/UniswapV2Factory";
import { SwapRouter02 } from "../../typechain/SwapRouter02";
import { UniswapV2Factory } from "../../typechain/UniswapV2Factory";


type Token = StandardTokenMock | WETH9;

Expand Down

0 comments on commit c4f6939

Please sign in to comment.