File tree 3 files changed +9
-9
lines changed
contracts/zero-ex/contracts/src/transformers/bridges
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ contract ArbitrumBridgeAdapter is
35
35
AbstractBridgeAdapter (42161 , "Arbitrum "),
36
36
MixinAaveV3 ,
37
37
MixinBalancerV2Batch ,
38
+ MixinClober ,
38
39
MixinCurve ,
39
40
MixinCurveV2 ,
40
41
MixinDodoV2 ,
@@ -44,10 +45,9 @@ contract ArbitrumBridgeAdapter is
44
45
MixinUniswapV3 ,
45
46
MixinUniswapV2 ,
46
47
MixinWOOFi ,
47
- MixinZeroExBridge ,
48
- MixinClober
48
+ MixinZeroExBridge
49
49
{
50
- constructor (IEtherTokenV06 weth ) public MixinCurve (weth) MixinAaveV3 ( true ) MixinClober (weth ) {}
50
+ constructor (IEtherTokenV06 weth ) public MixinClober (weth) MixinCurve (weth) MixinAaveV3 ( true ) {}
51
51
52
52
function _trade (
53
53
BridgeOrder memory order ,
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ contract EthereumBridgeAdapter is
48
48
MixinBalancerV2Batch ,
49
49
MixinBancor ,
50
50
MixinBancorV3 ,
51
+ MixinClober ,
51
52
MixinCompound ,
52
53
MixinCurve ,
53
54
MixinCurveV2 ,
@@ -64,20 +65,19 @@ contract EthereumBridgeAdapter is
64
65
MixinUniswap ,
65
66
MixinUniswapV2 ,
66
67
MixinUniswapV3 ,
67
- MixinZeroExBridge ,
68
- MixinClober
68
+ MixinZeroExBridge
69
69
{
70
70
constructor (
71
71
IEtherTokenV06 weth
72
72
)
73
73
public
74
74
MixinBancor (weth)
75
75
MixinBancorV3 (weth)
76
+ MixinClober (weth)
76
77
MixinCompound (weth)
77
78
MixinCurve (weth)
78
79
MixinLido (weth)
79
80
MixinUniswap (weth)
80
- MixinClober (weth)
81
81
{}
82
82
83
83
function _trade (
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ contract PolygonBridgeAdapter is
39
39
MixinAaveV3 ,
40
40
MixinAaveV2 ,
41
41
MixinBalancerV2Batch ,
42
+ MixinClober ,
42
43
MixinCurve ,
43
44
MixinCurveV2 ,
44
45
MixinDodo ,
@@ -50,10 +51,9 @@ contract PolygonBridgeAdapter is
50
51
MixinUniswapV3 ,
51
52
MixinSolidly ,
52
53
MixinWOOFi ,
53
- MixinZeroExBridge ,
54
- MixinClober
54
+ MixinZeroExBridge
55
55
{
56
- constructor (IEtherTokenV06 weth ) public MixinCurve (weth) MixinAaveV3 ( false ) MixinClober (weth ) {}
56
+ constructor (IEtherTokenV06 weth ) public MixinClober (weth) MixinCurve (weth) MixinAaveV3 ( false ) {}
57
57
58
58
function _trade (
59
59
BridgeOrder memory order ,
You can’t perform that action at this time.
0 commit comments