Skip to content

Commit df3ac71

Browse files
committed
style: lint to alpabet order
1 parent fa31818 commit df3ac71

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

contracts/zero-ex/contracts/src/transformers/bridges/ArbitrumBridgeAdapter.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ contract ArbitrumBridgeAdapter is
3535
AbstractBridgeAdapter(42161, "Arbitrum"),
3636
MixinAaveV3,
3737
MixinBalancerV2Batch,
38+
MixinClober,
3839
MixinCurve,
3940
MixinCurveV2,
4041
MixinDodoV2,
@@ -44,10 +45,9 @@ contract ArbitrumBridgeAdapter is
4445
MixinUniswapV3,
4546
MixinUniswapV2,
4647
MixinWOOFi,
47-
MixinZeroExBridge,
48-
MixinClober
48+
MixinZeroExBridge
4949
{
50-
constructor(IEtherTokenV06 weth) public MixinCurve(weth) MixinAaveV3(true) MixinClober(weth) {}
50+
constructor(IEtherTokenV06 weth) public MixinClober(weth) MixinCurve(weth) MixinAaveV3(true) {}
5151

5252
function _trade(
5353
BridgeOrder memory order,

contracts/zero-ex/contracts/src/transformers/bridges/EthereumBridgeAdapter.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ contract EthereumBridgeAdapter is
4848
MixinBalancerV2Batch,
4949
MixinBancor,
5050
MixinBancorV3,
51+
MixinClober,
5152
MixinCompound,
5253
MixinCurve,
5354
MixinCurveV2,
@@ -64,20 +65,19 @@ contract EthereumBridgeAdapter is
6465
MixinUniswap,
6566
MixinUniswapV2,
6667
MixinUniswapV3,
67-
MixinZeroExBridge,
68-
MixinClober
68+
MixinZeroExBridge
6969
{
7070
constructor(
7171
IEtherTokenV06 weth
7272
)
7373
public
7474
MixinBancor(weth)
7575
MixinBancorV3(weth)
76+
MixinClober(weth)
7677
MixinCompound(weth)
7778
MixinCurve(weth)
7879
MixinLido(weth)
7980
MixinUniswap(weth)
80-
MixinClober(weth)
8181
{}
8282

8383
function _trade(

contracts/zero-ex/contracts/src/transformers/bridges/PolygonBridgeAdapter.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ contract PolygonBridgeAdapter is
3939
MixinAaveV3,
4040
MixinAaveV2,
4141
MixinBalancerV2Batch,
42+
MixinClober,
4243
MixinCurve,
4344
MixinCurveV2,
4445
MixinDodo,
@@ -50,10 +51,9 @@ contract PolygonBridgeAdapter is
5051
MixinUniswapV3,
5152
MixinSolidly,
5253
MixinWOOFi,
53-
MixinZeroExBridge,
54-
MixinClober
54+
MixinZeroExBridge
5555
{
56-
constructor(IEtherTokenV06 weth) public MixinCurve(weth) MixinAaveV3(false) MixinClober(weth) {}
56+
constructor(IEtherTokenV06 weth) public MixinClober(weth) MixinCurve(weth) MixinAaveV3(false) {}
5757

5858
function _trade(
5959
BridgeOrder memory order,

0 commit comments

Comments
 (0)