Skip to content

Commit b0693d7

Browse files
bweickrichardliang
authored andcommitted
Organize integrations folder into integration type. (#70)
1 parent 066aca9 commit b0693d7

18 files changed

+17
-17
lines changed

contracts/protocol/integration/KyberExchangeAdapter.sol renamed to contracts/protocol/integration/exchange/KyberExchangeAdapter.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ pragma experimental "ABIEncoderV2";
2828

2929
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
3030
import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";
31-
import { PreciseUnitMath } from "../../lib/PreciseUnitMath.sol";
32-
import { IKyberNetworkProxy } from "../../interfaces/external/IKyberNetworkProxy.sol";
31+
import { PreciseUnitMath } from "../../../lib/PreciseUnitMath.sol";
32+
import { IKyberNetworkProxy } from "../../../interfaces/external/IKyberNetworkProxy.sol";
3333

3434
contract KyberExchangeAdapter {
3535
using SafeMath for uint256;

contracts/protocol/integration/SynthetixExchangeAdapter.sol renamed to contracts/protocol/integration/exchange/SynthetixExchangeAdapter.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
pragma solidity 0.6.10;
2020
pragma experimental "ABIEncoderV2";
2121

22-
import { ISynth } from "../../interfaces/external/ISynth.sol";
23-
import { ISynthetixExchanger } from "../../interfaces/external/ISynthetixExchanger.sol";
22+
import { ISynth } from "../../../interfaces/external/ISynth.sol";
23+
import { ISynthetixExchanger } from "../../../interfaces/external/ISynthetixExchanger.sol";
2424

2525
/**
2626
* @title SynthetixTradeAdapter

0 commit comments

Comments
 (0)