* feat: initial stab at the LidoSampler and the MixinLido * feat: full integration of lido sampler and mixin * fix: return pooled Ether amount not shares & properly unwrap WETH * refactor: clean up Lido sampler and data passing * fix: lower gas schedule for WETH to stETH deposits * refactor: remove MixinLido unused ETH code path * chore: add changelog entries * fix: lower Lido gas schedule slightly * fix: revert MixinLido on unsupported token pair * fix: address review comments, improve early exit if wrong tokens * fix: add contract addresses to Lido FQT
266 lines
7.6 KiB
Solidity
266 lines
7.6 KiB
Solidity
// SPDX-License-Identifier: Apache-2.0
|
|
/*
|
|
|
|
Copyright 2021 ZeroEx Intl.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
pragma solidity ^0.6.5;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
import "./IBridgeAdapter.sol";
|
|
import "./BridgeProtocols.sol";
|
|
import "./mixins/MixinBalancer.sol";
|
|
import "./mixins/MixinBalancerV2.sol";
|
|
import "./mixins/MixinBancor.sol";
|
|
import "./mixins/MixinCoFiX.sol";
|
|
import "./mixins/MixinCurve.sol";
|
|
import "./mixins/MixinCurveV2.sol";
|
|
import "./mixins/MixinCryptoCom.sol";
|
|
import "./mixins/MixinDodo.sol";
|
|
import "./mixins/MixinDodoV2.sol";
|
|
import "./mixins/MixinKyber.sol";
|
|
import "./mixins/MixinKyberDmm.sol";
|
|
import "./mixins/MixinLido.sol";
|
|
import "./mixins/MixinMakerPSM.sol";
|
|
import "./mixins/MixinMooniswap.sol";
|
|
import "./mixins/MixinMStable.sol";
|
|
import "./mixins/MixinNerve.sol";
|
|
import "./mixins/MixinOasis.sol";
|
|
import "./mixins/MixinShell.sol";
|
|
import "./mixins/MixinUniswap.sol";
|
|
import "./mixins/MixinUniswapV2.sol";
|
|
import "./mixins/MixinUniswapV3.sol";
|
|
import "./mixins/MixinZeroExBridge.sol";
|
|
|
|
contract BridgeAdapter is
|
|
IBridgeAdapter,
|
|
MixinBalancer,
|
|
MixinBalancerV2,
|
|
MixinBancor,
|
|
MixinCoFiX,
|
|
MixinCurve,
|
|
MixinCurveV2,
|
|
MixinCryptoCom,
|
|
MixinDodo,
|
|
MixinDodoV2,
|
|
MixinKyber,
|
|
MixinKyberDmm,
|
|
MixinLido,
|
|
MixinMakerPSM,
|
|
MixinMooniswap,
|
|
MixinMStable,
|
|
MixinNerve,
|
|
MixinOasis,
|
|
MixinShell,
|
|
MixinUniswap,
|
|
MixinUniswapV2,
|
|
MixinUniswapV3,
|
|
MixinZeroExBridge
|
|
{
|
|
constructor(IEtherTokenV06 weth)
|
|
public
|
|
MixinBalancer()
|
|
MixinBalancerV2()
|
|
MixinBancor(weth)
|
|
MixinCoFiX()
|
|
MixinCurve(weth)
|
|
MixinCurveV2()
|
|
MixinCryptoCom()
|
|
MixinDodo()
|
|
MixinDodoV2()
|
|
MixinKyber(weth)
|
|
MixinLido(weth)
|
|
MixinMakerPSM()
|
|
MixinMooniswap(weth)
|
|
MixinMStable()
|
|
MixinNerve()
|
|
MixinOasis()
|
|
MixinShell()
|
|
MixinUniswap(weth)
|
|
MixinUniswapV2()
|
|
MixinUniswapV3()
|
|
MixinZeroExBridge()
|
|
{}
|
|
|
|
function trade(
|
|
BridgeOrder memory order,
|
|
IERC20TokenV06 sellToken,
|
|
IERC20TokenV06 buyToken,
|
|
uint256 sellAmount
|
|
)
|
|
public
|
|
override
|
|
returns (uint256 boughtAmount)
|
|
{
|
|
uint128 protocolId = uint128(uint256(order.source) >> 128);
|
|
if (protocolId == BridgeProtocols.CURVE) {
|
|
boughtAmount = _tradeCurve(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.CURVEV2) {
|
|
boughtAmount = _tradeCurveV2(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.UNISWAPV3) {
|
|
boughtAmount = _tradeUniswapV3(
|
|
sellToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.UNISWAPV2) {
|
|
boughtAmount = _tradeUniswapV2(
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.UNISWAP) {
|
|
boughtAmount = _tradeUniswap(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.BALANCER) {
|
|
boughtAmount = _tradeBalancer(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.BALANCERV2) {
|
|
boughtAmount = _tradeBalancerV2(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.KYBER) {
|
|
boughtAmount = _tradeKyber(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.MAKERPSM) {
|
|
boughtAmount = _tradeMakerPsm(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.MOONISWAP) {
|
|
boughtAmount = _tradeMooniswap(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.MSTABLE) {
|
|
boughtAmount = _tradeMStable(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.OASIS) {
|
|
boughtAmount = _tradeOasis(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.SHELL) {
|
|
boughtAmount = _tradeShell(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.DODO) {
|
|
boughtAmount = _tradeDodo(
|
|
sellToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.DODOV2) {
|
|
boughtAmount = _tradeDodoV2(
|
|
sellToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.CRYPTOCOM) {
|
|
boughtAmount = _tradeCryptoCom(
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.BANCOR) {
|
|
boughtAmount = _tradeBancor(
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.COFIX) {
|
|
boughtAmount = _tradeCoFiX(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.NERVE) {
|
|
boughtAmount = _tradeNerve(
|
|
sellToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.KYBERDMM) {
|
|
boughtAmount = _tradeKyberDmm(
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else if (protocolId == BridgeProtocols.LIDO) {
|
|
boughtAmount = _tradeLido(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
} else {
|
|
boughtAmount = _tradeZeroExBridge(
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
order.bridgeData
|
|
);
|
|
}
|
|
|
|
emit BridgeFill(
|
|
order.source,
|
|
sellToken,
|
|
buyToken,
|
|
sellAmount,
|
|
boughtAmount
|
|
);
|
|
}
|
|
}
|