Overview
POL Balance
POL Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
Zap
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "./Curve.sol"; import "./interfaces/IWeth.sol"; import "./interfaces/ICurve.sol"; import "./interfaces/IOracle.sol"; import "./interfaces/ICurveFactory.sol"; import "./assimilators/AssimilatorV3.sol"; contract Zap { using SafeMath for uint256; using SafeERC20 for IERC20Metadata; struct ZapData { address curve; address base; address quote; uint256 zapAmount; uint256 curveBaseBal; uint8 curveBaseDecimals; uint256 curveQuoteBal; } struct ZapDepositData { uint256 curBaseAmount; uint256 curQuoteAmount; uint256 maxBaseAmount; uint256 maxQuoteAmount; } ICurveFactory public immutable curveFactory; modifier isDFXCurve(address _curve) { require(curveFactory.isDFXCurve(_curve), "zap/invalid-curve"); _; } constructor(address _factory) { curveFactory = ICurveFactory(_factory); } function unzap( address _curve, uint256 _lpAmount, uint256 _deadline, uint256 _minTokenAmount, address _token, bool _toETH ) public isDFXCurve(_curve) returns (uint256) { address wETH = ICurve(_curve).getWeth(); IERC20Metadata base = IERC20Metadata(Curve(payable(_curve)).numeraires(0)); IERC20Metadata quote = IERC20Metadata(Curve(payable(_curve)).numeraires(1)); require(_token == address(base) || _token == address(quote), "zap/token-not-supported"); IERC20Metadata(_curve).safeTransferFrom(msg.sender, address(this), _lpAmount); Curve(payable(_curve)).withdraw(_lpAmount, _deadline); // from base if (_token == address(base)) { uint256 baseAmount = base.balanceOf(address(this)); base.safeApprove(_curve, 0); base.safeApprove(_curve, type(uint256).max); Curve(payable(_curve)).originSwap(address(base), address(quote), baseAmount, 0, _deadline); uint256 quoteAmount = quote.balanceOf(address(this)); require(quoteAmount >= _minTokenAmount, "!Unzap/not-enough-token-amount"); if (address(quote) == wETH && _toETH) { IWETH(wETH).withdraw(quoteAmount); (bool success,) = payable(msg.sender).call{value: quoteAmount}(""); require(success, "zap/unzap-to-eth-failed"); } else { quote.safeTransfer(msg.sender, quoteAmount); } return quoteAmount; } else { uint256 quoteAmount = quote.balanceOf(address(this)); quote.safeApprove(_curve, 0); quote.safeApprove(_curve, type(uint256).max); Curve(payable(_curve)).originSwap(address(quote), address(base), quoteAmount, 0, _deadline); uint256 baseAmount = base.balanceOf(address(this)); require(baseAmount >= _minTokenAmount, "!Unzap/not-enough-token-amount"); if (address(base) == wETH && _toETH) { IWETH(wETH).withdraw(quoteAmount); (bool success,) = payable(msg.sender).call{value: baseAmount}(""); require(success, "zap/unzap-to-eth-failed"); } else { base.safeTransfer(msg.sender, baseAmount); } return baseAmount; } } /// @notice Zaps from a single token into the LP pool /// @param _curve The address of the curve /// @param _zapAmount The amount to zap, denominated in the ERC20's decimal placing /// @param _deadline Deadline for this zap to be completed by /// @param _minLPAmount Min LP amount to get /// @return uint256 - The amount of LP tokens received function zap(address _curve, uint256 _zapAmount, uint256 _deadline, uint256 _minLPAmount, address _token) public isDFXCurve(_curve) returns (uint256) { IERC20Metadata base = IERC20Metadata(Curve(payable(_curve)).numeraires(0)); IERC20Metadata quote = IERC20Metadata(Curve(payable(_curve)).numeraires(1)); require(_token == address(base) || _token == address(quote), "zap/token-not-supported"); bool isFromBase = _token == address(base) ? true : false; (, uint256 swapAmount) = calcSwapAmountForZap(_curve, _zapAmount, isFromBase); // Swap on curve if (isFromBase) { _zapFromBase(_curve, base, address(quote), swapAmount, _deadline, _zapAmount); } else { _zapFromQuote(_curve, address(base), quote, swapAmount, _deadline, _zapAmount); } return zap_(_curve, base, quote, _deadline, _minLPAmount); } function zapETH(address _curve, uint256 _deadline, uint256 _minLPAmount) public payable isDFXCurve(_curve) returns (uint256) { require(msg.value > 0, "zap/zap-amount-is-zero"); // token is weth, zapAmount is msg.value - coming eth amount address _token = ICurve(_curve).getWeth(); // first convert coming ETH to WETH & send wrapped amount to user back IWETH(_token).deposit{value: msg.value}(); IERC20Metadata(_token).safeTransferFrom(address(this), msg.sender, msg.value); IERC20Metadata base = IERC20Metadata(Curve(payable(_curve)).numeraires(0)); IERC20Metadata quote = IERC20Metadata(Curve(payable(_curve)).numeraires(1)); require(_token == address(base) || _token == address(quote), "zap/token-not-supported"); bool isFromBase = _token == address(base) ? true : false; (, uint256 swapAmount) = calcSwapAmountForZap(_curve, msg.value, isFromBase); // Swap on curve if (isFromBase) { _zapFromBase(_curve, base, address(quote), swapAmount, _deadline, msg.value); } else { _zapFromQuote(_curve, address(base), quote, swapAmount, _deadline, msg.value); } return zap_(_curve, base, quote, _deadline, _minLPAmount); } // helpers for zap function _zapFromBase( address _curve, IERC20Metadata _base, address _quote, uint256 _swapAmount, uint256 _deadline, uint256 _zapAmount ) private { (_base).safeTransferFrom(msg.sender, address(this), _zapAmount); (_base).safeApprove(_curve, 0); (_base).safeApprove(_curve, _swapAmount); Curve(payable(_curve)).originSwap(address(_base), _quote, _swapAmount, 0, _deadline); } function _zapFromQuote( address _curve, address _base, IERC20Metadata _quote, uint256 _swapAmount, uint256 _deadline, uint256 _zapAmount ) private { _quote.safeTransferFrom(msg.sender, address(this), _zapAmount); _quote.safeApprove(_curve, 0); _quote.safeApprove(_curve, _swapAmount); Curve(payable(_curve)).originSwap(address(_quote), _base, _swapAmount, 0, _deadline); } function zap_(address _curve, IERC20Metadata _base, IERC20Metadata _quote, uint256 _deadline, uint256 _minLPAmount) private returns (uint256) { // Calculate deposit amount (uint256 depositAmount,,) = _calcDepositAmount( _curve, _base, ZapDepositData({ curBaseAmount: _base.balanceOf(address(this)), curQuoteAmount: _quote.balanceOf(address(this)), maxBaseAmount: _base.balanceOf(address(this)), maxQuoteAmount: _quote.balanceOf(address(this)) }) ); // Can only deposit the smaller amount as we won't have enough of the // token to deposit _base.safeApprove(_curve, 0); _base.safeApprove(_curve, _base.balanceOf(address(this))); _quote.safeApprove(_curve, 0); _quote.safeApprove(_curve, _quote.balanceOf(address(this))); (uint256 lpAmount,) = Curve(payable(_curve)).deposit(depositAmount, 0, 0, type(uint256).max, type(uint256).max, _deadline); require(lpAmount >= _minLPAmount, "!Zap/not-enough-lp-amount"); // send lp to user IERC20Metadata(_curve).safeTransfer(msg.sender, IERC20Metadata(_curve).balanceOf(address(this))); // Transfer all remaining balances back to user _base.safeTransfer(msg.sender, _base.balanceOf(address(this))); _quote.safeTransfer(msg.sender, _quote.balanceOf(address(this))); return lpAmount; } // **** View only functions **** // /// @notice Iteratively calculates how much base to swap /// @param _curve The address of the curve /// @param _zapAmount The amount to zap, denominated in the ERC20's decimal placing /// @return uint256 - The amount to swap function calcSwapAmountForZapFromBase(address _curve, uint256 _zapAmount) public view returns (uint256) { (, uint256 ret) = calcSwapAmountForZap(_curve, _zapAmount, true); return ret; } /// @notice Iteratively calculates how much quote to swap /// @param _curve The address of the curve /// @param _zapAmount The amount to zap, denominated in the ERC20's decimal placing /// @return uint256 - The amount to swap function calcSwapAmountForZapFromQuote(address _curve, uint256 _zapAmount) public view returns (uint256) { (, uint256 ret) = calcSwapAmountForZap(_curve, _zapAmount, false); return ret; } /// @notice Iteratively calculates how much to swap /// @param _curve The address of the curve /// @param _zapAmount The amount to zap, denominated in the ERC20's decimal placing /// @param isFromBase Is the swap originating from the base? /// @return address - The address of the base /// @return uint256 - The amount to swap function calcSwapAmountForZap(address _curve, uint256 _zapAmount, bool isFromBase) public view returns (address, uint256) { // Base will always be index 0 address base = Curve(payable(_curve)).reserves(0); IERC20Metadata quote = IERC20Metadata(Curve(payable(_curve)).reserves(1)); // Ratio of base quote in 18 decimals uint256 curveBaseBal = IERC20Metadata(base).balanceOf(_curve); uint8 curveBaseDecimals = IERC20Metadata(base).decimals(); uint256 curveQuoteBal = quote.balanceOf(_curve); // How much user wants to swap uint256 initialSwapAmount = _zapAmount.div(2); // Calc Base Swap Amount if (isFromBase) { return ( base, _calcBaseSwapAmount( initialSwapAmount, ZapData({ curve: _curve, base: base, quote: address(quote), zapAmount: _zapAmount, curveBaseBal: curveBaseBal, curveBaseDecimals: curveBaseDecimals, curveQuoteBal: curveQuoteBal }) ) ); } // Calc quote swap amount return ( base, _calcQuoteSwapAmount( initialSwapAmount, ZapData({ curve: _curve, base: base, quote: address(quote), zapAmount: _zapAmount, curveBaseBal: curveBaseBal, curveBaseDecimals: curveBaseDecimals, curveQuoteBal: curveQuoteBal }) ) ); } // **** Helper functions **** /// @notice Given a quote amount, calculate the maximum deposit amount, along with the /// the number of LP tokens that will be generated, along with the maximized /// base/quote amounts /// @param _curve The address of the curve /// @param _quoteAmount The amount of quote tokens /// @return uint256 - The deposit amount /// @return uint256 - The LPTs received /// @return uint256[] memory - The baseAmount and quoteAmount function calcMaxDepositAmountGivenQuote(address _curve, uint256 _quoteAmount) public view returns (uint256, uint256, uint256[] memory) { (uint256 maxBaseAmount,,) = calcMaxBaseForDeposit(_curve, _quoteAmount); address base = Curve(payable(_curve)).reserves(0); return _calcDepositAmount( _curve, IERC20Metadata(base), ZapDepositData({ curBaseAmount: maxBaseAmount, curQuoteAmount: _quoteAmount, maxBaseAmount: maxBaseAmount, maxQuoteAmount: _quoteAmount }) ); } /// @notice Given a base amount, calculate the maximum deposit amount, along with the /// the number of LP tokens that will be generated, along with the maximized /// base/quote amounts /// @param _curve The address of the curve /// @param _baseAmount The amount of base tokens /// @return uint256 - The deposit amount /// @return uint256 - The LPTs received /// @return uint256[] memory - The baseAmount and quoteAmount function calcMaxDepositAmountGivenBase(address _curve, uint256 _baseAmount) public view returns (uint256, uint256, uint256[] memory) { (uint256 maxQuoteAmount,,) = calcMaxQuoteForDeposit(_curve, _baseAmount); address base = Curve(payable(_curve)).reserves(0); return _calcDepositAmount( _curve, IERC20Metadata(base), ZapDepositData({ curBaseAmount: _baseAmount, curQuoteAmount: maxQuoteAmount, maxBaseAmount: _baseAmount, maxQuoteAmount: maxQuoteAmount }) ); } /// notice Given a base amount, calculate the max base amount to be deposited /// param payable _curve The address of the curve /// param _quoteAmount The amount of base tokens /// return uint256 - The max quote amount function calcMaxBaseForDeposit(address _curve, uint256 _quoteAmount) public view returns (uint256 baseAmount, uint256 usdAmount, uint256 lptAmount) { uint8 curveQuoteDecimals = IERC20Metadata(Curve(payable(_curve)).reserves(1)).decimals(); require(curveQuoteDecimals <= 18, "zap/big-decimals"); (, uint256[] memory outs) = Curve(payable(_curve)).viewDeposit(2e18); uint256 ratio = outs[1].mul(10 ** (36 - curveQuoteDecimals)).div(outs[0].mul(1e12)); baseAmount = _quoteAmount.mul(10 ** (36 - curveQuoteDecimals)).div(ratio).div(1e12); (usdAmount, lptAmount) = _estimateDeposit(_curve, baseAmount, _quoteAmount); } /// @notice Given a base amount, calculate the max quote amount to be deposited function calcMaxQuoteForDeposit(address _curve, uint256 _baseAmount) public view returns (uint256 quoteAmount, uint256 usdAmount, uint256 lptAmount) { uint8 curveBaseDecimals = IERC20Metadata(Curve(payable(_curve)).reserves(0)).decimals(); require(curveBaseDecimals <= 18, "zap/big-decimals"); (, uint256[] memory outs) = Curve(payable(_curve)).viewDeposit(2e18); uint256 ratio = outs[0].mul(10 ** (36 - curveBaseDecimals)).div(outs[1].mul(1e12)); quoteAmount = _baseAmount.mul(10 ** (36 - curveBaseDecimals)).div(ratio).div(1e12); (usdAmount, lptAmount) = _estimateDeposit(_curve, _baseAmount, quoteAmount); } // **** Internal function **** // Stack too deep function _roundDown(uint256 a) internal pure returns (uint256) { return a.mul(99999999).div(100000000); } /// @notice Calculate how many quote tokens needs to be swapped into base tokens to /// respect the pool's ratio /// @param initialSwapAmount The initial amount to swap /// @param zapData Zap data encoded /// @return uint256 - The amount of quote tokens to be swapped into base tokens function _calcQuoteSwapAmount(uint256 initialSwapAmount, ZapData memory zapData) internal view returns (uint256) { uint256 swapAmount = initialSwapAmount; uint256 delta = initialSwapAmount.div(2); uint256 recvAmount; uint256 curveRatio; uint256 userRatio; // Computer bring me magic number for (uint256 i = 0; i < 32; i++) { // How much will we receive in return recvAmount = Curve(payable(zapData.curve)).viewOriginSwap(zapData.quote, zapData.base, swapAmount); require(zapData.curveBaseDecimals <= 18, "zap/big-decimals"); // Update user's ratio userRatio = recvAmount.mul(10 ** (36 - uint256(zapData.curveBaseDecimals))).div( zapData.zapAmount.sub(swapAmount).mul(1e12) ); curveRatio = zapData.curveBaseBal.sub(recvAmount).mul(10 ** (36 - uint256(zapData.curveBaseDecimals))).div( zapData.curveQuoteBal.add(swapAmount).mul(1e12) ); // If user's ratio is approx curve ratio, then just swap // I.e. ratio converges if (userRatio.div(1e16) == curveRatio.div(1e16)) { return swapAmount; } // Otherwise, we keep iterating else if (userRatio > curveRatio) { // We swapping too much swapAmount = swapAmount.sub(delta); } else if (userRatio < curveRatio) { // We swapping too little swapAmount = swapAmount.add(delta); } // Cannot swap more than zapAmount if (swapAmount > zapData.zapAmount) { swapAmount = zapData.zapAmount - 1; } // Keep halving delta = delta.div(2); } revert("Zap/not-converging"); } /// @notice Calculate how many base tokens needs to be swapped into quote tokens to /// respect the pool's ratio /// @param initialSwapAmount The initial amount to swap /// @param zapData Zap data encoded /// @return uint256 - The amount of base tokens to be swapped into quote tokens function _calcBaseSwapAmount(uint256 initialSwapAmount, ZapData memory zapData) internal view returns (uint256) { uint256 swapAmount = initialSwapAmount; uint256 delta = initialSwapAmount.div(2); uint256 recvAmount; uint256 curveRatio; uint256 userRatio; // Computer bring me magic number for (uint256 i = 0; i < 32; i++) { // How much will we receive in return recvAmount = Curve(payable(zapData.curve)).viewOriginSwap(zapData.base, zapData.quote, swapAmount); require(zapData.curveBaseDecimals <= 18, "zap/big-decimals"); // Update user's ratio userRatio = zapData.zapAmount.sub(swapAmount).mul(10 ** (36 - uint256(zapData.curveBaseDecimals))).div( recvAmount.mul(1e12) ); curveRatio = zapData.curveBaseBal.add(swapAmount).mul(10 ** (36 - uint256(zapData.curveBaseDecimals))).div( zapData.curveQuoteBal.sub(recvAmount).mul(1e12) ); // If user's ratio is approx curve ratio, then just swap // I.e. ratio converges if (userRatio.div(1e16) == curveRatio.div(1e16)) { return swapAmount; } // Otherwise, we keep iterating else if (userRatio > curveRatio) { // We swapping too little swapAmount = swapAmount.add(delta); } else if (userRatio < curveRatio) { // We swapping too much swapAmount = swapAmount.sub(delta); } // Cannot swap more than zap if (swapAmount > zapData.zapAmount) { swapAmount = zapData.zapAmount - 1; } // Keep halving delta = delta.div(2); } revert("Zap/not-converging"); } /// @notice Given a ZapDepositData structure, calculate the max depositAmount, the max /// LP tokens received, and the required amounts /// param _curve The address of the curve /// @param _base The base address in the curve /// @param dd Deposit data /// @return uint256 - The deposit amount /// @return uint256 - The LPTs received /// @return uint256[] memory - The baseAmount and quoteAmount function _calcDepositAmount(address _curve, IERC20Metadata _base, ZapDepositData memory dd) internal view returns (uint256, uint256, uint256[] memory) { // Calculate _depositAmount IERC20Metadata quote = IERC20Metadata(Curve(payable(_curve)).numeraires(1)); require(_base.decimals() <= 18, "zap/big-decimals"); uint256 curveRatio = _base.balanceOf(_curve).mul(10 ** (36 - _base.decimals())).div(quote.balanceOf(_curve).mul(1e12)); // Deposit amount is denomiated in USD value (based on pool LP ratio) // Things are 1:1 on USDC side on deposit uint256 quoteDepositAmount = dd.curQuoteAmount.mul(1e12); // Things will be based on ratio on deposit uint256 baseDepositAmount = dd.curBaseAmount.mul(10 ** (18 - _base.decimals())); // Trim out decimal values uint256 depositAmount = quoteDepositAmount.add(baseDepositAmount.mul(1e18).div(curveRatio)); depositAmount = _roundDown(depositAmount); // Make sure we have enough of our inputs (uint256 lps, uint256[] memory outs) = Curve(payable(_curve)).viewDeposit(depositAmount); uint256 baseDelta = outs[0] > dd.maxBaseAmount ? outs[0].sub(dd.curBaseAmount) : 0; uint256 quoteDelta = outs[1] > dd.maxQuoteAmount ? outs[1].sub(dd.curQuoteAmount) : 0; // Make sure we can deposit if (baseDelta > 0 || quoteDelta > 0) { dd.curBaseAmount = _roundDown(dd.curBaseAmount.sub(baseDelta)); dd.curQuoteAmount = _roundDown(dd.curQuoteAmount.sub(quoteDelta)); return _calcDepositAmount(_curve, _base, dd); } return (depositAmount, lps, outs); } // estimate deposit & lpt function _estimateDeposit(address _curve, uint256 _baseAmt, uint256 _quoteAmt) internal view returns (uint256 usdAmt, uint256 lptAmt) { Curve curve = Curve(payable(_curve)); IERC20Metadata base = IERC20Metadata(curve.reserves(0)); IERC20Metadata quote = IERC20Metadata(curve.reserves(1)); uint256 curveBaseAmt = base.balanceOf(_curve); uint256 curveQuoteAmt = quote.balanceOf(_curve); AssimilatorV3 baseAssim = AssimilatorV3(curve.assimilator(address(base))); AssimilatorV3 quoteAssim = AssimilatorV3(curve.assimilator(address(quote))); usdAmt = _getUsdAmount(baseAssim, base, _baseAmt) + _getUsdAmount(quoteAssim, quote, _quoteAmt); uint256 curveTotalUsd = _getUsdAmount(baseAssim, base, curveBaseAmt) + _getUsdAmount(quoteAssim, quote, curveQuoteAmt); lptAmt = usdAmt.mul(curve.totalSupply()).div(curveTotalUsd); } // get a usd amount of token function _getUsdAmount(AssimilatorV3 _assim, IERC20Metadata _token, uint256 _amt) internal view returns (uint256) { IOracle oracle = IOracle(_assim.oracle()); (, int256 price,,,) = oracle.latestRoundData(); return _amt.mul(uint256(price)).mul(10 ** (18 - oracle.decimals())).div(10 ** (_token.decimals())); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./interfaces/IWeth.sol"; import "./interfaces/IAssimilatorFactory.sol"; import "./lib/ABDKMath64x64.sol"; import "./lib/FullMath.sol"; import "./lib/NoDelegateCall.sol"; import "./Orchestrator.sol"; import "./ProportionalLiquidity.sol"; import "./Swaps.sol"; import "./ViewLiquidity.sol"; import "./Storage.sol"; import "./interfaces/ICurveFactory.sol"; import "./interfaces/IAssimilator.sol"; import "./interfaces/ICurve.sol"; import "./interfaces/IConfig.sol"; import "./Structs.sol"; library Curves { using ABDKMath64x64 for int128; event Approval(address indexed _owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function add(uint256 x, uint256 y, string memory errorMessage) private pure returns (uint256 z) { require((z = x + y) >= x, errorMessage); } function sub(uint256 x, uint256 y, string memory errorMessage) private pure returns (uint256 z) { require((z = x - y) <= x, errorMessage); } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(Storage.Curve storage curve, address recipient, uint256 amount) external returns (bool) { _transfer(curve, msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(Storage.Curve storage curve, address spender, uint256 amount) external returns (bool) { _approve(curve, msg.sender, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount` */ function transferFrom(Storage.Curve storage curve, address sender, address recipient, uint256 amount) external returns (bool) { _transfer(curve, sender, recipient, amount); _approve( curve, sender, msg.sender, sub(curve.allowances[sender][msg.sender], amount, "Curve/insufficient-allowance") ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(Storage.Curve storage curve, address spender, uint256 addedValue) external returns (bool) { _approve( curve, msg.sender, spender, add(curve.allowances[msg.sender][spender], addedValue, "Curve/approval-overflow") ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(Storage.Curve storage curve, address spender, uint256 subtractedValue) external returns (bool) { _approve( curve, msg.sender, spender, sub(curve.allowances[msg.sender][spender], subtractedValue, "Curve/allowance-decrease-underflow") ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is public function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(Storage.Curve storage curve, address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); curve.balances[sender] = sub(curve.balances[sender], amount, "Curve/insufficient-balance"); curve.balances[recipient] = add(curve.balances[recipient], amount, "Curve/transfer-overflow"); emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `_owner`s tokens. * * This is public function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `_owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(Storage.Curve storage curve, address _owner, address spender, uint256 amount) private { require(_owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); curve.allowances[_owner][spender] = amount; emit Approval(_owner, spender, amount); } } contract Curve is Storage, NoDelegateCall, ICurve { using SafeMath for uint256; using ABDKMath64x64 for int128; using SafeERC20 for IERC20; address private curveFactory; address private immutable wETH; IConfig private config; event Approval(address indexed _owner, address indexed spender, uint256 value); event ParametersSet(uint256 alpha, uint256 beta, uint256 delta, uint256 epsilon, uint256 lambda); event AssetIncluded(address indexed numeraire, address indexed reserve, uint256 weight); event AssimilatorIncluded( address indexed derivative, address indexed numeraire, address indexed reserve, address assimilator ); event PartitionRedeemed(address indexed token, address indexed redeemer, uint256 value); event OwnershipTransfered(address indexed previousOwner, address indexed newOwner); event FrozenSet(bool isFrozen); event EmergencyAlarm(bool isEmergency); event Trade( address indexed trader, address indexed origin, address indexed target, uint256 originAmount, uint256 targetAmount, int128 rawProtocolFee ); event Transfer(address indexed from, address indexed to, uint256 value); modifier onlyOwner() { require(msg.sender == owner || msg.sender == config.getProtocolTreasury(), "Curve/caller-is-not-owner"); _; } modifier nonReentrant() { require(notEntered, "Curve/re-entered"); notEntered = false; _; notEntered = true; } modifier transactable() { require(!frozen, "Curve/frozen-only-allowing-proportional-withdraw"); _; } modifier isEmergency() { require(emergency, "Curve/emergency-only-allowing-emergency-proportional-withdraw"); _; } modifier isNotEmergency() { require(!emergency, "Curve/emergency-only-allowing-emergency-proportional-withdraw"); _; } modifier deadline(uint256 _deadline) { require(block.timestamp < _deadline, "Curve/tx-deadline-passed"); _; } modifier globallyTransactable() { require(!config.getGlobalFrozenState(), "Curve/frozen-globally-only-allowing-proportional-withdraw"); _; } constructor( string memory _name, string memory _symbol, address[] memory _assets, uint256[] memory _assetWeights, address _factory, address _config ) { require(_factory != address(0), "Curve/curve factory zero address!"); owner = msg.sender; name = _name; symbol = _symbol; curveFactory = _factory; config = IConfig(_config); emit OwnershipTransfered(address(0), msg.sender); wETH = ICurveFactory(_factory).wETH(); Orchestrator.initialize(curve, numeraires, reserves, derivatives, _assets, _assetWeights); } /// @notice sets the parameters for the pool /// @param _alpha the value for alpha (halt threshold) must be less than or equal to 1 and greater than 0 /// @param _beta the value for beta must be less than alpha and greater than 0 /// @param _feeAtHalt the maximum value for the fee at the halt point /// @param _epsilon the base fee for the pool /// @param _lambda the value for lambda must be less than or equal to 1 and greater than zero function setParams(uint256 _alpha, uint256 _beta, uint256 _feeAtHalt, uint256 _epsilon, uint256 _lambda) external onlyOwner { Orchestrator.setParams(curve, _alpha, _beta, _feeAtHalt, _epsilon, _lambda); } function setAssimilator(address _baseCurrency, address _baseAssim, address _quoteCurrency, address _quoteAssim) external onlyOwner { Orchestrator.setAssimilator(curve, _baseCurrency, _baseAssim, _quoteCurrency, _quoteAssim); } /// @notice excludes an assimilator from the curve /// @param _derivative the address of the assimilator to exclude function excludeDerivative(address _derivative) external onlyOwner { for (uint256 i = 0; i < numeraires.length; i++) { if (_derivative == numeraires[i]) { revert("Curve/cannot-delete-numeraire"); } if (_derivative == reserves[i]) { revert("Curve/cannot-delete-reserve"); } } delete curve.assimilators[_derivative]; } /// @notice view the current parameters of the curve /// @return alpha_ the current alpha value /// beta_ the current beta value /// delta_ the current delta value /// epsilon_ the current epsilon value /// lambda_ the current lambda value /// omega_ the current omega value function viewCurve() external view returns (uint256 alpha_, uint256 beta_, uint256 delta_, uint256 epsilon_, uint256 lambda_) { return Orchestrator.viewCurve(curve); } function setEmergency(bool _emergency) external onlyOwner { emit EmergencyAlarm(_emergency); emergency = _emergency; } function setFrozen(bool _toFreezeOrNotToFreeze) external onlyOwner { emit FrozenSet(_toFreezeOrNotToFreeze); frozen = _toFreezeOrNotToFreeze; } function transferOwnership(address _newOwner) external onlyOwner { require(_newOwner != address(0), "Curve/new-owner-cannot-be-zero-address"); emit OwnershipTransfered(owner, _newOwner); owner = _newOwner; } /// @notice swap a dynamic origin amount for a fixed target amount /// @param _origin the address of the origin /// @param _target the address of the target /// @param _originAmount the origin amount /// @param _minTargetAmount the minimum target amount /// @param _deadline deadline in block number after which the trade will not execute /// @return targetAmount_ the amount of target that has been swapped for the origin amount function originSwap( address _origin, address _target, uint256 _originAmount, uint256 _minTargetAmount, uint256 _deadline ) external deadline(_deadline) globallyTransactable transactable noDelegateCall isNotEmergency nonReentrant returns (uint256 targetAmount_) { OriginSwapData memory _swapData; _swapData._origin = _origin; _swapData._target = _target; _swapData._originAmount = _originAmount; _swapData._recipient = msg.sender; _swapData._curveFactory = curveFactory; uint256 balanceBefore = IERC20(_target).balanceOf(_swapData._recipient); Swaps.originSwap(curve, _swapData, false); uint256 balanceAfter = IERC20(_target).balanceOf(_swapData._recipient); targetAmount_ = balanceAfter - balanceBefore; require(targetAmount_ >= _minTargetAmount, "Curve/below-min-target-amount"); } function originSwapFromETH(address _target, uint256 _minTargetAmount, uint256 _deadline) external payable deadline(_deadline) globallyTransactable transactable noDelegateCall isNotEmergency nonReentrant returns (uint256 targetAmount_) { // first convert coming ETH to WETH & send wrapped amount to user back IWETH(wETH).deposit{value: msg.value}(); IERC20(wETH).safeTransferFrom(address(this), msg.sender, msg.value); OriginSwapData memory _swapData; _swapData._origin = wETH; _swapData._target = _target; _swapData._originAmount = msg.value; _swapData._recipient = msg.sender; _swapData._curveFactory = curveFactory; targetAmount_ = Swaps.originSwap(curve, _swapData, false); require(targetAmount_ >= _minTargetAmount, "Curve/below-min-target-amount"); } function originSwapToETH(address _origin, uint256 _originAmount, uint256 _minTargetAmount, uint256 _deadline) external deadline(_deadline) globallyTransactable transactable noDelegateCall isNotEmergency nonReentrant returns (uint256 targetAmount_) { OriginSwapData memory _swapData; _swapData._origin = _origin; _swapData._target = wETH; _swapData._originAmount = _originAmount; _swapData._recipient = msg.sender; _swapData._curveFactory = curveFactory; targetAmount_ = Swaps.originSwap(curve, _swapData, true); require(targetAmount_ >= _minTargetAmount, "Curve/below-min-target-amount"); } /// @notice view how much target amount a fixed origin amount will swap for /// @param _origin the address of the origin /// @param _target the address of the target /// @param _originAmount the origin amount /// @return targetAmount_ the target amount that would have been swapped for the origin amount function viewOriginSwap(address _origin, address _target, uint256 _originAmount) external view globallyTransactable transactable returns (uint256 targetAmount_) { targetAmount_ = Swaps.viewOriginSwap(curve, _origin, _target, _originAmount); } /// @notice swap a dynamic origin amount for a fixed target amount /// @param _origin the address of the origin /// @param _target the address of the target /// @param _maxOriginAmount the maximum origin amount /// @param _targetAmount the target amount /// @param _deadline deadline in block number after which the trade will not execute /// @return originAmount_ the amount of origin that has been swapped for the target function targetSwap( address _origin, address _target, uint256 _maxOriginAmount, uint256 _targetAmount, uint256 _deadline ) external deadline(_deadline) globallyTransactable transactable noDelegateCall isNotEmergency nonReentrant returns (uint256 originAmount_) { TargetSwapData memory _swapData; _swapData._origin = _origin; _swapData._target = _target; _swapData._targetAmount = _targetAmount; _swapData._recipient = msg.sender; _swapData._curveFactory = curveFactory; originAmount_ = Swaps.targetSwap(curve, _swapData); require(originAmount_ <= _maxOriginAmount, "Curve/above-max-origin-amount"); } /// @notice view how much of the origin currency the target currency will take /// @param _origin the address of the origin /// @param _target the address of the target /// @param _targetAmount the target amount /// @return originAmount_ the amount of target that has been swapped for the origin function viewTargetSwap(address _origin, address _target, uint256 _targetAmount) external view globallyTransactable transactable returns (uint256 originAmount_) { originAmount_ = Swaps.viewTargetSwap(curve, _origin, _target, _targetAmount); } // deposit erc20 tokens function deposit( uint256 _deposit, uint256 _minQuoteAmount, uint256 _minBaseAmount, uint256 _maxQuoteAmount, uint256 _maxBaseAmount, uint256 _deadline ) external deadline(_deadline) globallyTransactable transactable nonReentrant noDelegateCall isNotEmergency returns (uint256 curvesMinted_, uint256[] memory deposits_) { require(_deposit > 0, "Curve/deposit_below_zero"); (curvesMinted_, deposits_) = viewDeposit(_deposit); DepositData memory _depositData; _depositData.deposits = _deposit; _depositData.minQuote = _minQuoteAmount; _depositData.minBase = _minBaseAmount; _depositData.maxQuote = _maxQuoteAmount; _depositData.maxBase = _maxBaseAmount; _depositData.baseAmt = deposits_[0]; _depositData.quoteAmt = deposits_[1]; _depositData.token0 = reserves[0]; _depositData.token0Bal = IERC20(reserves[0]).balanceOf(address(this)); _depositData.token1Bal = IERC20(reserves[1]).balanceOf(address(this)); (curvesMinted_, deposits_) = ProportionalLiquidity.proportionalDeposit(curve, _depositData); return (curvesMinted_, deposits_); } // deposit in ETH & erc20 pair function depositETH( uint256 _deposit, uint256 _minQuoteAmount, uint256 _minBaseAmount, uint256 _maxQuoteAmount, uint256 _maxBaseAmount, uint256 _deadline ) external payable deadline(_deadline) globallyTransactable transactable nonReentrant noDelegateCall isNotEmergency returns (uint256 curvesMinted_, uint256[] memory deposits_) { require(_deposit > 0, "Curve/deposit_below_zero"); (curvesMinted_, deposits_) = viewDeposit(_deposit); IWETH(wETH).deposit{value: msg.value}(); IERC20(wETH).safeTransferFrom(address(this), msg.sender, msg.value); DepositData memory _depositData; _depositData.deposits = _deposit; _depositData.minQuote = _minQuoteAmount; _depositData.minBase = _minBaseAmount; _depositData.maxQuote = _maxQuoteAmount; _depositData.maxBase = _maxBaseAmount; _depositData.baseAmt = deposits_[0]; _depositData.quoteAmt = deposits_[1]; _depositData.token0 = reserves[0]; _depositData.token0Bal = IERC20(reserves[0]).balanceOf(address(this)); _depositData.token1Bal = IERC20(reserves[1]).balanceOf(address(this)); (curvesMinted_, deposits_) = ProportionalLiquidity.proportionalDeposit(curve, _depositData); uint256 remainder = 0; if (IAssimilator(curve.assets[0].addr).underlyingToken() == wETH) { remainder = msg.value - deposits_[0]; } else if (IAssimilator(curve.assets[1].addr).underlyingToken() == wETH) { remainder = msg.value - deposits_[1]; } else { revert("Curve/Deposit ETH failed"); } // now need to determine which is wETH if (remainder > 0) { IERC20(wETH).safeTransferFrom(msg.sender, address(this), remainder); IWETH(wETH).withdraw(remainder); (bool success,) = msg.sender.call{value: remainder}(""); require(success, "Curve/ETH transfer failed"); } return (curvesMinted_, deposits_); } /// @notice view deposits and curves minted a given deposit would return /// @param _deposit the full amount of stablecoins you want to deposit. Divided evenly according to the /// prevailing proportions of the numeraire assets of the pool /// @return (the amount of curves you receive in return for your deposit, /// the amount deposited for each numeraire) function viewDeposit(uint256 _deposit) public view globallyTransactable transactable returns (uint256, uint256[] memory) { // curvesToMint_, depositsToMake_ uint256 deposit_; uint256[] memory outs_ = new uint256[](2); (deposit_, outs_) = ProportionalLiquidity.viewProportionalDeposit(curve, _deposit); uint256 ratio = (_deposit * 1e36) / deposit_; outs_[0] = (outs_[0] * ratio) / 1e36; outs_[1] = (outs_[1] * ratio) / 1e36; return (_deposit, outs_); } /// @notice Emergency withdraw tokens in the event that the oracle somehow bugs out /// and no one is able to withdraw due to the invariant check /// @param _curvesToBurn the full amount you want to withdraw from the pool which will be withdrawn from evenly amongst the /// numeraire assets of the pool /// @return withdrawals_ the amonts of numeraire assets withdrawn from the pool function emergencyWithdraw(uint256 _curvesToBurn, uint256 _deadline) external isEmergency deadline(_deadline) nonReentrant noDelegateCall returns (uint256[] memory withdrawals_) { return ProportionalLiquidity.proportionalWithdraw(curve, _curvesToBurn, false); } /// @notice withdrawas amount of curve tokens from the the pool equally from the numeraire assets of the pool with no slippage /// @param _curvesToBurn the full amount you want to withdraw from the pool which will be withdrawn from evenly amongst the /// numeraire assets of the pool /// @return withdrawals_ the amonts of numeraire assets withdrawn from the pool function withdraw(uint256 _curvesToBurn, uint256 _deadline) external deadline(_deadline) nonReentrant noDelegateCall isNotEmergency returns (uint256[] memory withdrawals_) { return ProportionalLiquidity.proportionalWithdraw(curve, _curvesToBurn, false); } /// @notice withdrawas amount of curve tokens from the the pool equally from the numeraire assets of the pool with no slippage, WETH is unwrapped to ETH /// @param _curvesToBurn the full amount you want to withdraw from the pool which will be withdrawn from evenly amongst the /// numeraire assets of the pool /// @return withdrawals_ the amonts of numeraire assets withdrawn from the pool function withdrawETH(uint256 _curvesToBurn, uint256 _deadline) external deadline(_deadline) nonReentrant noDelegateCall isNotEmergency returns (uint256[] memory withdrawals_) { return ProportionalLiquidity.proportionalWithdraw(curve, _curvesToBurn, true); } /// @notice views the withdrawal information from the pool /// @param _curvesToBurn the full amount you want to withdraw from the pool which will be withdrawn from evenly amongst the /// numeraire assets of the pool /// @return the amonnts of numeraire assets withdrawn from the pool function viewWithdraw(uint256 _curvesToBurn) external view globallyTransactable transactable returns (uint256[] memory) { return ProportionalLiquidity.viewProportionalWithdraw(curve, _curvesToBurn); } function getWeth() external view override returns (address) { return wETH; } function supportsInterface(bytes4 _interface) public pure returns (bool supports_) { supports_ = this.supportsInterface.selector == _interface // erc165 || bytes4(0x7f5828d0) == _interface // eip173 || bytes4(0x36372b07) == _interface; // erc20 } /// @notice transfers curve tokens /// @param _recipient the address of where to send the curve tokens /// @param _amount the amount of curve tokens to send /// @return success_ the success bool of the call function transfer(address _recipient, uint256 _amount) public nonReentrant noDelegateCall isNotEmergency returns (bool success_) { success_ = Curves.transfer(curve, _recipient, _amount); } /// @notice transfers curve tokens from one address to another address /// @param _sender the account from which the curve tokens will be sent /// @param _recipient the account to which the curve tokens will be sent /// @param _amount the amount of curve tokens to transfer /// @return success_ the success bool of the call function transferFrom(address _sender, address _recipient, uint256 _amount) public nonReentrant noDelegateCall isNotEmergency returns (bool success_) { success_ = Curves.transferFrom(curve, _sender, _recipient, _amount); } /// @notice approves a user to spend curve tokens on their behalf /// @param _spender the account to allow to spend from msg.sender /// @param _amount the amount to specify the spender can spend /// @return success_ the success bool of this call function approve(address _spender, uint256 _amount) public nonReentrant noDelegateCall returns (bool success_) { success_ = Curves.approve(curve, _spender, _amount); } /// @notice view the curve token balance of a given account /// @param _account the account to view the balance of /// @return balance_ the curve token ballance of the given account function balanceOf(address _account) public view returns (uint256 balance_) { balance_ = curve.balances[_account]; } /// @notice views the total curve supply of the pool /// @return totalSupply_ the total supply of curve tokens function totalSupply() public view returns (uint256 totalSupply_) { totalSupply_ = curve.totalSupply; } /// @notice views the total allowance one address has to spend from another address /// @param _owner the address of the owner /// @param _spender the address of the spender /// @return allowance_ the amount the owner has allotted the spender function allowance(address _owner, address _spender) public view returns (uint256 allowance_) { allowance_ = curve.allowances[_owner][_spender]; } /// @notice views the total amount of liquidity in the curve in numeraire value and format - 18 decimals /// @return total_ the total value in the curve /// @return individual_ the individual values in the curve function liquidity() public view returns (uint256 total_, uint256[] memory individual_) { return ViewLiquidity.viewLiquidity(curve); } /// @notice view the assimilator address for a derivative /// @return assimilator_ the assimilator address function assimilator(address _derivative) public view returns (address assimilator_) { assimilator_ = curve.assimilators[_derivative].addr; } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IWETH { function deposit() external payable; function transfer(address to, uint256 value) external returns (bool); function withdraw(uint256) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface ICurve { function getWeth() external view returns (address); }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; interface IOracle { function acceptOwnership() external; function accessController() external view returns (address); function aggregator() external view returns (address); function confirmAggregator(address _aggregator) external; function decimals() external view returns (uint8); function description() external view returns (string memory); function getAnswer(uint256 _roundId) external view returns (int256); function getRoundData(uint80 _roundId) external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); function getTimestamp(uint256 _roundId) external view returns (uint256); function latestAnswer() external view returns (int256); function latestRound() external view returns (uint256); function latestRoundData() external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); function latestTimestamp() external view returns (uint256); function owner() external view returns (address); function phaseAggregators(uint16) external view returns (address); function phaseId() external view returns (uint16); function proposeAggregator(address _aggregator) external; function proposedAggregator() external view returns (address); function proposedGetRoundData(uint80 _roundId) external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); function proposedLatestRoundData() external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); function setController(address _accessController) external; function transferOwnership(address _to) external; function version() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "./IAssimilatorFactory.sol"; interface ICurveFactory { function getProtocolFee() external view returns (int128); function getProtocolTreasury() external view returns (address); function assimilatorFactory() external view returns (IAssimilatorFactory); function wETH() external view returns (address); function isDFXCurve(address) external view returns (bool); }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "../lib/ABDKMath64x64.sol"; import "../interfaces/IAssimilator.sol"; import "../interfaces/IOracle.sol"; import "../interfaces/IWeth.sol"; contract AssimilatorV3 is IAssimilator { using ABDKMath64x64 for int128; using ABDKMath64x64 for uint256; using SafeMath for uint256; using SafeERC20 for IERC20Metadata; IERC20Metadata public immutable pairToken; IOracle public immutable oracle; IERC20Metadata public immutable token; uint256 public immutable oracleDecimals; uint256 public immutable tokenDecimals; uint256 public immutable pairTokenDecimals; address public immutable wETH; // solhint-disable-next-line constructor( address _wETH, address _pairToken, IOracle _oracle, address _token, uint256 _tokenDecimals, uint256 _oracleDecimals ) { wETH = _wETH; oracle = _oracle; token = IERC20Metadata(_token); oracleDecimals = _oracleDecimals; tokenDecimals = _tokenDecimals; pairToken = IERC20Metadata(_pairToken); pairTokenDecimals = pairToken.decimals(); } function underlyingToken() external view override returns (address) { return address(token); } function getWeth() external view override returns (address) { return wETH; } function getRate() public view override returns (uint256) { (, int256 price,,,) = oracle.latestRoundData(); require(price >= 0, "invalid price oracle"); return uint256(price); } // takes raw eurs amount, transfers it in, calculates corresponding numeraire amount and returns it function intakeRawAndGetBalance(uint256 _amount) external payable override returns (int128 amount_, int128 balance_) { require(_amount > 0, "zero amount!"); uint256 balanceBefore = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), _amount); uint256 balanceAfter = token.balanceOf(address(this)); uint256 diff = _amount - (balanceAfter - balanceBefore); if (diff > 0) { intakeMoreFromFoT(_amount, diff); } uint256 _balance = token.balanceOf(address(this)); uint256 _rate = getRate(); balance_ = ((_balance * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); } // takes raw eurs amount, transfers it in, calculates corresponding numeraire amount and returns it function intakeRaw(uint256 _amount) external payable override returns (int128 amount_) { require(_amount > 0, "zero amount!"); uint256 balanceBefore = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), _amount); uint256 balanceAfter = token.balanceOf(address(this)); uint256 diff = _amount - (balanceAfter - balanceBefore); if (diff > 0) { intakeMoreFromFoT(_amount, diff); } uint256 _rate = getRate(); amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); } // takes a numeraire amount, calculates the raw amount of eurs, tr ansfers it in and returns the corresponding raw amount function intakeNumeraire(int128 _amount) external payable override returns (uint256 amount_) { uint256 _rate = getRate(); // improve precision amount_ = Math.ceilDiv(_amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)), _rate * 1e18); require(amount_ > 0, "zero amount!"); uint256 balanceBefore = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), amount_); uint256 balanceAfter = token.balanceOf(address(this)); uint256 diff = amount_ - (balanceAfter - balanceBefore); if (diff > 0) intakeMoreFromFoT(amount_, diff); } // takes a numeraire amount, calculates the raw amount of eurs, transfers it in and returns the corresponding raw amount function intakeNumeraireLPRatio( uint256 _minBaseAmount, uint256 _maxBaseAmount, uint256 _baseAmount, uint256 _minpairTokenAmount, uint256 _maxpairTokenAmount, uint256 _quoteAmount, address token0 ) external payable override returns (uint256 amount_) { if (token0 == address(token)) { amount_ = _baseAmount; } else { amount_ = _quoteAmount; } require(amount_ > 0, "zero amount!"); if (token0 == address(token)) { require(amount_ > _minBaseAmount && amount_ <= _maxBaseAmount, "Assimilator/LP Ratio imbalanced!"); } else { require(amount_ > _minpairTokenAmount && amount_ <= _maxpairTokenAmount, "Assimilator/LP Ratio imbalanced!"); } uint256 balanceBefore = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), amount_); uint256 balanceAfter = token.balanceOf(address(this)); uint256 diff = amount_ - (balanceAfter - balanceBefore); if (diff > 0) intakeMoreFromFoT(amount_, diff); } function intakeMoreFromFoT(uint256 amount_, uint256 diff) internal { require(amount_ > 0, "zero amount!"); // handle FoT token uint256 feePercentage = diff.mul(1e5).div(amount_).add(1); uint256 additionalIntakeAmt = (diff * 1e5) / (1e5 - feePercentage); token.safeTransferFrom(msg.sender, address(this), additionalIntakeAmt); } // takes a raw amount of eurs and transfers it out, returns numeraire value of the raw amount function outputRawAndGetBalance(address _dst, uint256 _amount) external override returns (int128 amount_, int128 balance_) { require(_amount > 0, "zero amount!"); uint256 _rate = getRate(); token.safeTransfer(_dst, _amount); uint256 _balance = token.balanceOf(address(this)); amount_ = ((_amount * _rate)).divu(10 ** (tokenDecimals + oracleDecimals)); balance_ = ((_balance * _rate)).divu(10 ** (tokenDecimals + oracleDecimals)); } // takes a raw amount of eurs and transfers it out, returns numeraire value of the raw amount function outputRaw(address _dst, uint256 _amount) external override returns (int128 amount_) { require(_amount > 0, "zero amount!"); uint256 _rate = getRate(); token.safeTransfer(_dst, _amount); amount_ = ((_amount * _rate)).divu(10 ** (tokenDecimals + oracleDecimals)); } // takes a numeraire value of eurs, figures out the raw amount, transfers raw amount out, and returns raw amount function outputNumeraire(address _dst, int128 _amount, bool _toETH) external payable override returns (uint256 amount_) { uint256 _rate = getRate(); amount_ = Math.ceilDiv(_amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)), _rate * 1e18); require(amount_ > 0, "zero amount!"); if (_toETH) { IWETH(wETH).withdraw(amount_); (bool success,) = payable(_dst).call{value: amount_}(""); require(success, "Assimilator/Transfer ETH Failed"); } else { token.safeTransfer(_dst, amount_); } } // takes a numeraire amount and returns the raw amount function viewRawAmount(int128 _amount) external view override returns (uint256 amount_) { uint256 _rate = getRate(); // improve precision amount_ = Math.ceilDiv(_amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)), _rate * 1e18); } function viewRawAmountLPRatio(uint256 _baseWeight, uint256 _pairTokenWeight, address _addr, int128 _amount) external view override returns (uint256 amount_) { uint256 _tokenBal = token.balanceOf(_addr); if (_tokenBal <= 0) return 0; _tokenBal = _tokenBal.mul(10 ** (18 + pairTokenDecimals)).div(_baseWeight); uint256 _pairTokenBal = pairToken.balanceOf(_addr).mul(10 ** (18 + tokenDecimals)).div(_pairTokenWeight); // Rate is in pair token decimals uint256 _rate = _pairTokenBal.mul(1e6).div(_tokenBal); amount_ = Math.ceilDiv(_amount.mulu(10 ** tokenDecimals * 1e6 * 1e18), _rate * 1e18); } // takes a raw amount and returns the numeraire amount function viewNumeraireAmount(uint256 _amount) external view override returns (int128 amount_) { uint256 _rate = getRate(); amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); } // views the numeraire value of the current balance of the reserve, in this case eurs function viewNumeraireBalance(address _addr) external view override returns (int128 balance_) { uint256 _rate = getRate(); uint256 _balance = token.balanceOf(_addr); if (_balance <= 0) return ABDKMath64x64.fromUInt(0); balance_ = ((_balance * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); } // views the numeraire value of the current balance of the reserve, in this case eurs function viewNumeraireAmountAndBalance(address _addr, uint256 _amount) external view override returns (int128 amount_, int128 balance_) { uint256 _rate = getRate(); amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); uint256 _balance = token.balanceOf(_addr); balance_ = ((_balance * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals); } // views the numeraire value of the current balance of the reserve, in this case eurs // instead of calculating with chainlink's "rate" it'll be determined by the existing // token ratio. This is in here to prevent LPs from losing out on future oracle price updates function viewNumeraireBalanceLPRatio(uint256 _baseWeight, uint256 _pairTokenWeight, address _addr) external view override returns (int128 balance_) { uint256 _tokenBal = token.balanceOf(_addr); if (_tokenBal <= 0) return ABDKMath64x64.fromUInt(0); uint256 _pairTokenBal = pairToken.balanceOf(_addr).mul(1e18).div(_pairTokenWeight); // Rate is in 1e6 uint256 _rate = _pairTokenBal.mul(1e18).div(_tokenBal.mul(1e18).div(_baseWeight)); balance_ = ((_tokenBal * _rate) / 10 ** pairTokenDecimals).divu(1e18); } function transferFee(int128 _amount, address _treasury) external payable override { uint256 _rate = getRate(); if (_amount < 0) _amount = -(_amount); uint256 amount = _amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)) / (_rate * 1e18); token.safeTransfer(_treasury, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "../assimilators/AssimilatorV3.sol"; import "../interfaces/IOracle.sol"; interface IAssimilatorFactory { function getAssimilator(address _token, address _quote) external view returns (AssimilatorV3); function newAssimilator(address _quote, IOracle _oracle, address _token, uint256 _tokenDecimals) external returns (AssimilatorV3); }
// SPDX-License-Identifier: BSD-4-Clause /* * ABDK Math 64.64 Smart Contract Library. Copyright © 2019 by ABDK Consulting. * Author: Mikhail Vladimirov <[email protected]> */ pragma solidity ^0.8.13; /** * Smart contract library of mathematical functions operating with signed * 64.64-bit fixed point numbers. Signed 64.64-bit fixed point number is * basically a simple fraction whose numerator is signed 128-bit integer and * denominator is 2^64. As long as denominator is always the same, there is no * need to store it, thus in Solidity signed 64.64-bit fixed point numbers are * represented by int128 type holding only the numerator. */ library ABDKMath64x64 { /* * Minimum value signed 64.64-bit fixed point number may have. */ int128 private constant MIN_64x64 = -0x80000000000000000000000000000000; /* * Maximum value signed 64.64-bit fixed point number may have. */ int128 private constant MAX_64x64 = 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF; /** * Convert signed 256-bit integer number into signed 64.64-bit fixed point * number. Revert on overflow. * * @param x signed 256-bit integer number * @return signed 64.64-bit fixed point number */ function fromInt(int256 x) internal pure returns (int128) { unchecked { require(x >= -0x8000000000000000 && x <= 0x7FFFFFFFFFFFFFFF); return int128(x << 64); } } /** * Convert signed 64.64 fixed point number into signed 64-bit integer number * rounding down. * * @param x signed 64.64-bit fixed point number * @return signed 64-bit integer number */ function toInt(int128 x) internal pure returns (int64) { unchecked { return int64(x >> 64); } } /** * Convert unsigned 256-bit integer number into signed 64.64-bit fixed point * number. Revert on overflow. * * @param x unsigned 256-bit integer number * @return signed 64.64-bit fixed point number */ function fromUInt(uint256 x) internal pure returns (int128) { unchecked { require(x <= 0x7FFFFFFFFFFFFFFF); return int128(int256(x << 64)); } } /** * Convert signed 64.64 fixed point number into unsigned 64-bit integer * number rounding down. Revert on underflow. * * @param x signed 64.64-bit fixed point number * @return unsigned 64-bit integer number */ function toUInt(int128 x) internal pure returns (uint64) { unchecked { require(x >= 0); return uint64(uint128(x >> 64)); } } /** * Convert signed 128.128 fixed point number into signed 64.64-bit fixed point * number rounding down. Revert on overflow. * * @param x signed 128.128-bin fixed point number * @return signed 64.64-bit fixed point number */ function from128x128(int256 x) internal pure returns (int128) { unchecked { int256 result = x >> 64; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Convert signed 64.64 fixed point number into signed 128.128 fixed point * number. * * @param x signed 64.64-bit fixed point number * @return signed 128.128 fixed point number */ function to128x128(int128 x) internal pure returns (int256) { unchecked { return int256(x) << 64; } } /** * Calculate x + y. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function add(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 result = int256(x) + y; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x - y. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function sub(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 result = int256(x) - y; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x * y rounding down. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function mul(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 result = int256(x) * y >> 64; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x * y rounding towards zero, where x is signed 64.64 fixed point * number and y is signed 256-bit integer number. Revert on overflow. * * @param x signed 64.64 fixed point number * @param y signed 256-bit integer number * @return signed 256-bit integer number */ function muli(int128 x, int256 y) internal pure returns (int256) { unchecked { if (x == MIN_64x64) { require( y >= -0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF && y <= 0x1000000000000000000000000000000000000000000000000 ); return -y << 63; } else { bool negativeResult = false; if (x < 0) { x = -x; negativeResult = true; } if (y < 0) { y = -y; // We rely on overflow behavior here negativeResult = !negativeResult; } uint256 absoluteResult = mulu(x, uint256(y)); if (negativeResult) { require(absoluteResult <= 0x8000000000000000000000000000000000000000000000000000000000000000); return -int256(absoluteResult); // We rely on overflow behavior here } else { require(absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); return int256(absoluteResult); } } } } /** * Calculate x * y rounding down, where x is signed 64.64 fixed point number * and y is unsigned 256-bit integer number. Revert on overflow. * * @param x signed 64.64 fixed point number * @param y unsigned 256-bit integer number * @return unsigned 256-bit integer number */ function mulu(int128 x, uint256 y) internal pure returns (uint256) { unchecked { if (y == 0) return 0; require(x >= 0); uint256 lo = (uint256(int256(x)) * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) >> 64; uint256 hi = uint256(int256(x)) * (y >> 128); require(hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); hi <<= 64; require(hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - lo); return hi + lo; } } /** * Calculate x / y rounding towards zero. Revert on overflow or when y is * zero. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function div(int128 x, int128 y) internal pure returns (int128) { unchecked { require(y != 0); int256 result = (int256(x) << 64) / y; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x / y rounding towards zero, where x and y are signed 256-bit * integer numbers. Revert on overflow or when y is zero. * * @param x signed 256-bit integer number * @param y signed 256-bit integer number * @return signed 64.64-bit fixed point number */ function divi(int256 x, int256 y) internal pure returns (int128) { unchecked { require(y != 0); bool negativeResult = false; if (x < 0) { x = -x; // We rely on overflow behavior here negativeResult = true; } if (y < 0) { y = -y; // We rely on overflow behavior here negativeResult = !negativeResult; } uint128 absoluteResult = divuu(uint256(x), uint256(y)); if (negativeResult) { require(absoluteResult <= 0x80000000000000000000000000000000); return -int128(absoluteResult); // We rely on overflow behavior here } else { require(absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); return int128(absoluteResult); // We rely on overflow behavior here } } } /** * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit * integer numbers. Revert on overflow or when y is zero. * * @param x unsigned 256-bit integer number * @param y unsigned 256-bit integer number * @return signed 64.64-bit fixed point number */ function divu(uint256 x, uint256 y) internal pure returns (int128) { unchecked { require(y != 0); uint128 result = divuu(x, y); require(result <= uint128(MAX_64x64)); return int128(result); } } /** * Calculate -x. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function neg(int128 x) internal pure returns (int128) { unchecked { require(x != MIN_64x64); return -x; } } /** * Calculate |x|. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function abs(int128 x) internal pure returns (int128) { unchecked { require(x != MIN_64x64); return x < 0 ? -x : x; } } /** * Calculate 1 / x rounding towards zero. Revert on overflow or when x is * zero. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function inv(int128 x) internal pure returns (int128) { unchecked { require(x != 0); int256 result = int256(0x100000000000000000000000000000000) / x; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate arithmetics average of x and y, i.e. (x + y) / 2 rounding down. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function avg(int128 x, int128 y) internal pure returns (int128) { unchecked { return int128((int256(x) + int256(y)) >> 1); } } /** * Calculate geometric average of x and y, i.e. sqrt (x * y) rounding down. * Revert on overflow or in case x * y is negative. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function gavg(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 m = int256(x) * int256(y); require(m >= 0); require(m < 0x4000000000000000000000000000000000000000000000000000000000000000); return int128(sqrtu(uint256(m))); } } /** * Calculate x^y assuming 0^0 is 1, where x is signed 64.64 fixed point number * and y is unsigned 256-bit integer number. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y uint256 value * @return signed 64.64-bit fixed point number */ function pow(int128 x, uint256 y) internal pure returns (int128) { unchecked { bool negative = x < 0 && y & 1 == 1; uint256 absX = uint128(x < 0 ? -x : x); uint256 absResult; absResult = 0x100000000000000000000000000000000; if (absX <= 0x10000000000000000) { absX <<= 63; while (y != 0) { if (y & 0x1 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; if (y & 0x2 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; if (y & 0x4 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; if (y & 0x8 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; y >>= 4; } absResult >>= 64; } else { uint256 absXShift = 63; if (absX < 0x1000000000000000000000000) { absX <<= 32; absXShift -= 32; } if (absX < 0x10000000000000000000000000000) { absX <<= 16; absXShift -= 16; } if (absX < 0x1000000000000000000000000000000) { absX <<= 8; absXShift -= 8; } if (absX < 0x10000000000000000000000000000000) { absX <<= 4; absXShift -= 4; } if (absX < 0x40000000000000000000000000000000) { absX <<= 2; absXShift -= 2; } if (absX < 0x80000000000000000000000000000000) { absX <<= 1; absXShift -= 1; } uint256 resultShift = 0; while (y != 0) { require(absXShift < 64); if (y & 0x1 != 0) { absResult = absResult * absX >> 127; resultShift += absXShift; if (absResult > 0x100000000000000000000000000000000) { absResult >>= 1; resultShift += 1; } } absX = absX * absX >> 127; absXShift <<= 1; if (absX >= 0x100000000000000000000000000000000) { absX >>= 1; absXShift += 1; } y >>= 1; } require(resultShift < 64); absResult >>= 64 - resultShift; } int256 result = negative ? -int256(absResult) : int256(absResult); require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate sqrt (x) rounding down. Revert if x < 0. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function sqrt(int128 x) internal pure returns (int128) { unchecked { require(x >= 0); return int128(sqrtu(uint256(int256(x)) << 64)); } } /** * Calculate binary logarithm of x. Revert if x <= 0. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function log_2(int128 x) internal pure returns (int128) { unchecked { require(x > 0); int256 msb = 0; int256 xc = x; if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; } if (xc >= 0x100000000) { xc >>= 32; msb += 32; } if (xc >= 0x10000) { xc >>= 16; msb += 16; } if (xc >= 0x100) { xc >>= 8; msb += 8; } if (xc >= 0x10) { xc >>= 4; msb += 4; } if (xc >= 0x4) { xc >>= 2; msb += 2; } if (xc >= 0x2) msb += 1; // No need to shift xc anymore int256 result = msb - 64 << 64; uint256 ux = uint256(int256(x)) << uint256(127 - msb); for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) { ux *= ux; uint256 b = ux >> 255; ux >>= 127 + b; result += bit * int256(b); } return int128(result); } } /** * Calculate natural logarithm of x. Revert if x <= 0. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function ln(int128 x) internal pure returns (int128) { unchecked { require(x > 0); return int128(int256(uint256(int256(log_2(x))) * 0xB17217F7D1CF79ABC9E3B39803F2F6AF >> 128)); } } /** * Calculate binary exponent of x. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function exp_2(int128 x) internal pure returns (int128) { unchecked { require(x < 0x400000000000000000); // Overflow if (x < -0x400000000000000000) return 0; // Underflow uint256 result = 0x80000000000000000000000000000000; if (x & 0x8000000000000000 > 0) { result = result * 0x16A09E667F3BCC908B2FB1366EA957D3E >> 128; } if (x & 0x4000000000000000 > 0) { result = result * 0x1306FE0A31B7152DE8D5A46305C85EDEC >> 128; } if (x & 0x2000000000000000 > 0) { result = result * 0x1172B83C7D517ADCDF7C8C50EB14A791F >> 128; } if (x & 0x1000000000000000 > 0) { result = result * 0x10B5586CF9890F6298B92B71842A98363 >> 128; } if (x & 0x800000000000000 > 0) { result = result * 0x1059B0D31585743AE7C548EB68CA417FD >> 128; } if (x & 0x400000000000000 > 0) { result = result * 0x102C9A3E778060EE6F7CACA4F7A29BDE8 >> 128; } if (x & 0x200000000000000 > 0) { result = result * 0x10163DA9FB33356D84A66AE336DCDFA3F >> 128; } if (x & 0x100000000000000 > 0) { result = result * 0x100B1AFA5ABCBED6129AB13EC11DC9543 >> 128; } if (x & 0x80000000000000 > 0) { result = result * 0x10058C86DA1C09EA1FF19D294CF2F679B >> 128; } if (x & 0x40000000000000 > 0) { result = result * 0x1002C605E2E8CEC506D21BFC89A23A00F >> 128; } if (x & 0x20000000000000 > 0) { result = result * 0x100162F3904051FA128BCA9C55C31E5DF >> 128; } if (x & 0x10000000000000 > 0) { result = result * 0x1000B175EFFDC76BA38E31671CA939725 >> 128; } if (x & 0x8000000000000 > 0) { result = result * 0x100058BA01FB9F96D6CACD4B180917C3D >> 128; } if (x & 0x4000000000000 > 0) { result = result * 0x10002C5CC37DA9491D0985C348C68E7B3 >> 128; } if (x & 0x2000000000000 > 0) { result = result * 0x1000162E525EE054754457D5995292026 >> 128; } if (x & 0x1000000000000 > 0) { result = result * 0x10000B17255775C040618BF4A4ADE83FC >> 128; } if (x & 0x800000000000 > 0) { result = result * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB >> 128; } if (x & 0x400000000000 > 0) { result = result * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 >> 128; } if (x & 0x200000000000 > 0) { result = result * 0x10000162E43F4F831060E02D839A9D16D >> 128; } if (x & 0x100000000000 > 0) { result = result * 0x100000B1721BCFC99D9F890EA06911763 >> 128; } if (x & 0x80000000000 > 0) { result = result * 0x10000058B90CF1E6D97F9CA14DBCC1628 >> 128; } if (x & 0x40000000000 > 0) { result = result * 0x1000002C5C863B73F016468F6BAC5CA2B >> 128; } if (x & 0x20000000000 > 0) { result = result * 0x100000162E430E5A18F6119E3C02282A5 >> 128; } if (x & 0x10000000000 > 0) { result = result * 0x1000000B1721835514B86E6D96EFD1BFE >> 128; } if (x & 0x8000000000 > 0) { result = result * 0x100000058B90C0B48C6BE5DF846C5B2EF >> 128; } if (x & 0x4000000000 > 0) { result = result * 0x10000002C5C8601CC6B9E94213C72737A >> 128; } if (x & 0x2000000000 > 0) { result = result * 0x1000000162E42FFF037DF38AA2B219F06 >> 128; } if (x & 0x1000000000 > 0) { result = result * 0x10000000B17217FBA9C739AA5819F44F9 >> 128; } if (x & 0x800000000 > 0) { result = result * 0x1000000058B90BFCDEE5ACD3C1CEDC823 >> 128; } if (x & 0x400000000 > 0) { result = result * 0x100000002C5C85FE31F35A6A30DA1BE50 >> 128; } if (x & 0x200000000 > 0) { result = result * 0x10000000162E42FF0999CE3541B9FFFCF >> 128; } if (x & 0x100000000 > 0) { result = result * 0x100000000B17217F80F4EF5AADDA45554 >> 128; } if (x & 0x80000000 > 0) { result = result * 0x10000000058B90BFBF8479BD5A81B51AD >> 128; } if (x & 0x40000000 > 0) { result = result * 0x1000000002C5C85FDF84BD62AE30A74CC >> 128; } if (x & 0x20000000 > 0) { result = result * 0x100000000162E42FEFB2FED257559BDAA >> 128; } if (x & 0x10000000 > 0) { result = result * 0x1000000000B17217F7D5A7716BBA4A9AE >> 128; } if (x & 0x8000000 > 0) { result = result * 0x100000000058B90BFBE9DDBAC5E109CCE >> 128; } if (x & 0x4000000 > 0) { result = result * 0x10000000002C5C85FDF4B15DE6F17EB0D >> 128; } if (x & 0x2000000 > 0) { result = result * 0x1000000000162E42FEFA494F1478FDE05 >> 128; } if (x & 0x1000000 > 0) { result = result * 0x10000000000B17217F7D20CF927C8E94C >> 128; } if (x & 0x800000 > 0) { result = result * 0x1000000000058B90BFBE8F71CB4E4B33D >> 128; } if (x & 0x400000 > 0) { result = result * 0x100000000002C5C85FDF477B662B26945 >> 128; } if (x & 0x200000 > 0) { result = result * 0x10000000000162E42FEFA3AE53369388C >> 128; } if (x & 0x100000 > 0) { result = result * 0x100000000000B17217F7D1D351A389D40 >> 128; } if (x & 0x80000 > 0) { result = result * 0x10000000000058B90BFBE8E8B2D3D4EDE >> 128; } if (x & 0x40000 > 0) { result = result * 0x1000000000002C5C85FDF4741BEA6E77E >> 128; } if (x & 0x20000 > 0) { result = result * 0x100000000000162E42FEFA39FE95583C2 >> 128; } if (x & 0x10000 > 0) { result = result * 0x1000000000000B17217F7D1CFB72B45E1 >> 128; } if (x & 0x8000 > 0) { result = result * 0x100000000000058B90BFBE8E7CC35C3F0 >> 128; } if (x & 0x4000 > 0) { result = result * 0x10000000000002C5C85FDF473E242EA38 >> 128; } if (x & 0x2000 > 0) { result = result * 0x1000000000000162E42FEFA39F02B772C >> 128; } if (x & 0x1000 > 0) { result = result * 0x10000000000000B17217F7D1CF7D83C1A >> 128; } if (x & 0x800 > 0) { result = result * 0x1000000000000058B90BFBE8E7BDCBE2E >> 128; } if (x & 0x400 > 0) { result = result * 0x100000000000002C5C85FDF473DEA871F >> 128; } if (x & 0x200 > 0) { result = result * 0x10000000000000162E42FEFA39EF44D91 >> 128; } if (x & 0x100 > 0) { result = result * 0x100000000000000B17217F7D1CF79E949 >> 128; } if (x & 0x80 > 0) { result = result * 0x10000000000000058B90BFBE8E7BCE544 >> 128; } if (x & 0x40 > 0) { result = result * 0x1000000000000002C5C85FDF473DE6ECA >> 128; } if (x & 0x20 > 0) { result = result * 0x100000000000000162E42FEFA39EF366F >> 128; } if (x & 0x10 > 0) { result = result * 0x1000000000000000B17217F7D1CF79AFA >> 128; } if (x & 0x8 > 0) { result = result * 0x100000000000000058B90BFBE8E7BCD6D >> 128; } if (x & 0x4 > 0) { result = result * 0x10000000000000002C5C85FDF473DE6B2 >> 128; } if (x & 0x2 > 0) { result = result * 0x1000000000000000162E42FEFA39EF358 >> 128; } if (x & 0x1 > 0) { result = result * 0x10000000000000000B17217F7D1CF79AB >> 128; } result >>= uint256(int256(63 - (x >> 64))); require(result <= uint256(int256(MAX_64x64))); return int128(int256(result)); } } /** * Calculate natural exponent of x. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function exp(int128 x) internal pure returns (int128) { unchecked { require(x < 0x400000000000000000); // Overflow if (x < -0x400000000000000000) return 0; // Underflow return exp_2(int128(int256(x) * 0x171547652B82FE1777D0FFDA0D23A7D12 >> 128)); } } /** * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit * integer numbers. Revert on overflow or when y is zero. * * @param x unsigned 256-bit integer number * @param y unsigned 256-bit integer number * @return unsigned 64.64-bit fixed point number */ function divuu(uint256 x, uint256 y) private pure returns (uint128) { unchecked { require(y != 0); uint256 result; if (x <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) { result = (x << 64) / y; } else { uint256 msb = 192; uint256 xc = x >> 192; if (xc >= 0x100000000) { xc >>= 32; msb += 32; } if (xc >= 0x10000) { xc >>= 16; msb += 16; } if (xc >= 0x100) { xc >>= 8; msb += 8; } if (xc >= 0x10) { xc >>= 4; msb += 4; } if (xc >= 0x4) { xc >>= 2; msb += 2; } if (xc >= 0x2) msb += 1; // No need to shift xc anymore result = (x << 255 - msb) / ((y - 1 >> msb - 191) + 1); require(result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); uint256 hi = result * (y >> 128); uint256 lo = result * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); uint256 xh = x >> 192; uint256 xl = x << 64; if (xl < lo) xh -= 1; xl -= lo; // We rely on overflow behavior here lo = hi << 128; if (xl < lo) xh -= 1; xl -= lo; // We rely on overflow behavior here assert(xh == hi >> 128); result += xl / y; } require(result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); return uint128(result); } } /** * Calculate sqrt (x) rounding down, where x is unsigned 256-bit integer * number. * * @param x unsigned 256-bit integer number * @return unsigned 128-bit integer number */ function sqrtu(uint256 x) private pure returns (uint128) { unchecked { if (x == 0) { return 0; } else { uint256 xx = x; uint256 r = 1; if (xx >= 0x100000000000000000000000000000000) { xx >>= 128; r <<= 64; } if (xx >= 0x10000000000000000) { xx >>= 64; r <<= 32; } if (xx >= 0x100000000) { xx >>= 32; r <<= 16; } if (xx >= 0x10000) { xx >>= 16; r <<= 8; } if (xx >= 0x100) { xx >>= 8; r <<= 4; } if (xx >= 0x10) { xx >>= 4; r <<= 2; } if (xx >= 0x8) r <<= 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; // Seven iterations should be enough uint256 r1 = x / r; return uint128(r < r1 ? r : r1); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Contains 512-bit math functions /// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision /// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits library FullMath { /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv function mulDiv(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = a * b // Compute the product mod 2**256 and mod 2**256 - 1 // then use the Chinese Remainder Theorem to reconstruct // the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2**256 + prod0 uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(a, b, not(0)) prod0 := mul(a, b) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division if (prod1 == 0) { require(denominator > 0); assembly { result := div(prod0, denominator) } return result; } // Make sure the result is less than 2**256. // Also prevents denominator == 0 require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0] // Compute remainder using mulmod uint256 remainder; assembly { remainder := mulmod(a, b, denominator) } // Subtract 256 bit number from 512 bit number assembly { prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator // Compute largest power of two divisor of denominator. // Always >= 1. uint256 twos = (0 - denominator) & denominator; // Divide denominator by power of two assembly { denominator := div(denominator, twos) } // Divide [prod1 prod0] by the factors of two assembly { prod0 := div(prod0, twos) } // Shift in bits from prod1 into prod0. For this we need // to flip `twos` such that it is 2**256 / twos. // If twos is zero, then it becomes one assembly { twos := add(div(sub(0, twos), twos), 1) } prod0 |= prod1 * twos; // Invert denominator mod 2**256 // Now that denominator is an odd number, it has an inverse // modulo 2**256 such that denominator * inv = 1 mod 2**256. // Compute the inverse by starting with a seed that is correct // correct for four bits. That is, denominator * inv = 1 mod 2**4 uint256 inv = (3 * denominator) ^ 2; // Now use Newton-Raphson iteration to improve the precision. // Thanks to Hensel's lifting lemma, this also works in modular // arithmetic, doubling the correct bits in each step. inv *= 2 - denominator * inv; // inverse mod 2**8 inv *= 2 - denominator * inv; // inverse mod 2**16 inv *= 2 - denominator * inv; // inverse mod 2**32 inv *= 2 - denominator * inv; // inverse mod 2**64 inv *= 2 - denominator * inv; // inverse mod 2**128 inv *= 2 - denominator * inv; // inverse mod 2**256 // Because the division is now exact we can divide by multiplying // with the modular inverse of denominator. This will give us the // correct result modulo 2**256. Since the precoditions guarantee // that the outcome is less than 2**256, this is the final result. // We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inv; return result; } } /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result function mulDivRoundingUp(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) { unchecked { result = mulDiv(a, b, denominator); if (mulmod(a, b, denominator) > 0) { require(result < type(uint256).max); result++; } } } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.13; /// @title Prevents delegatecall to a contract /// @notice Base contract that provides a modifier for preventing delegatecall to methods in a child contract abstract contract NoDelegateCall { /// @dev The original address of this contract address private immutable original; constructor() { // Immutables are computed in the init code of the contract, and then inlined into the deployed bytecode. // In other words, this variable won't change when it's checked at runtime. original = address(this); } /// @dev Private method is used instead of inlining into modifier because modifiers are copied into each method, /// and the use of immutable means the address bytes are copied in every place the modifier is used. function checkNotDelegateCall() private view { require(address(this) == original); } /// @notice Prevents delegatecall into the modified method modifier noDelegateCall() { checkNotDelegateCall(); _; } }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./lib/ABDKMath64x64.sol"; import "./Storage.sol"; import "./CurveMath.sol"; library Orchestrator { using SafeERC20 for IERC20; using ABDKMath64x64 for int128; using ABDKMath64x64 for uint256; int128 private constant ONE_WEI = 0x12; event ParametersSet(uint256 alpha, uint256 beta, uint256 delta, uint256 epsilon, uint256 lambda); event AssetIncluded(address indexed numeraire, address indexed reserve, uint256 weight); event AssimilatorIncluded( address indexed derivative, address indexed numeraire, address indexed reserve, address assimilator ); function setParams( Storage.Curve storage curve, uint256 _alpha, uint256 _beta, uint256 _feeAtHalt, uint256 _epsilon, uint256 _lambda ) external { require(0 < _alpha && _alpha < 1e18, "Curve/parameter-invalid-alpha"); require(_beta < _alpha, "Curve/parameter-invalid-beta"); require(_feeAtHalt <= 5e17, "Curve/parameter-invalid-max"); require(_epsilon <= 1e16, "Curve/parameter-invalid-epsilon"); require(_lambda <= 1e18, "Curve/parameter-invalid-lambda"); int128 _omega = getFee(curve); curve.alpha = (_alpha + 1).divu(1e18); curve.beta = (_beta + 1).divu(1e18); curve.delta = (_feeAtHalt).divu(1e18).div(uint256(2).fromUInt().mul(curve.alpha.sub(curve.beta))) + ONE_WEI; curve.epsilon = (_epsilon + 1).divu(1e18); curve.lambda = (_lambda + 1).divu(1e18); int128 _psi = getFee(curve); require(_omega >= _psi, "Curve/parameters-increase-fee"); emit ParametersSet(_alpha, _beta, curve.delta.mulu(1e18), _epsilon, _lambda); } function setAssimilator( Storage.Curve storage curve, address _baseCurrency, address _baseAssim, address _quoteCurrency, address _quoteAssim ) external { require(_baseCurrency != address(0), "Curve/numeraire-cannot-be-zero-address"); require(_baseAssim != address(0), "Curve/numeraire-assimilator-cannot-be-zero-address"); require(_quoteCurrency != address(0), "Curve/reserve-cannot-be-zero-address"); require(_quoteAssim != address(0), "Curve/reserve-assimilator-cannot-be-zero-address"); Storage.Assimilator storage _baseAssimilator = curve.assimilators[_baseCurrency]; _baseAssimilator.addr = _baseAssim; Storage.Assimilator storage _quoteAssimilator = curve.assimilators[_quoteCurrency]; _quoteAssimilator.addr = _quoteAssim; curve.assets[0] = _baseAssimilator; curve.assets[1] = _quoteAssimilator; } function getFee(Storage.Curve storage curve) private view returns (int128 fee_) { int128 _gLiq; // Always pairs int128[] memory _bals = new int128[](2); for (uint256 i = 0; i < _bals.length; i++) { int128 _bal = Assimilators.viewNumeraireBalance(curve.assets[i].addr); _bals[i] = _bal; _gLiq += _bal; } fee_ = CurveMath.calculateFee(_gLiq, _bals, curve.beta, curve.delta, curve.weights); } function initialize( Storage.Curve storage curve, address[] storage numeraires, address[] storage reserves, address[] storage derivatives, address[] calldata _assets, uint256[] calldata _assetWeights ) external { require(_assetWeights.length == 2, "Curve/assetWeights-must-be-length-two"); require(_assets.length % 5 == 0, "Curve/assets-must-be-divisible-by-five"); for (uint256 i = 0; i < _assetWeights.length; i++) { uint256 ix = i * 5; numeraires.push(_assets[ix]); derivatives.push(_assets[ix]); reserves.push(_assets[2 + ix]); if (_assets[ix] != _assets[2 + ix]) { derivatives.push(_assets[2 + ix]); } includeAsset( curve, _assets[ix], // numeraire _assets[1 + ix], // numeraire assimilator _assets[2 + ix], // reserve _assets[3 + ix], // reserve assimilator _assets[4 + ix], // reserve approve to _assetWeights[i] ); } } function includeAsset( Storage.Curve storage curve, address _numeraire, address _numeraireAssim, address _reserve, address _reserveAssim, address _reserveApproveTo, uint256 _weight ) private { require(_numeraire != address(0), "Curve/numeraire-cannot-be-zero-address"); require(_numeraireAssim != address(0), "Curve/numeraire-assimilator-cannot-be-zero-address"); require(_reserve != address(0), "Curve/reserve-cannot-be-zero-address"); require(_reserveAssim != address(0), "Curve/reserve-assimilator-cannot-be-zero-address"); require(_weight < 1e18, "Curve/weight-must-be-less-than-one"); if (_numeraire != _reserve) { IERC20(_numeraire).safeApprove(_reserveApproveTo, type(uint256).max); } Storage.Assimilator storage _numeraireAssimilator = curve.assimilators[_numeraire]; _numeraireAssimilator.addr = _numeraireAssim; _numeraireAssimilator.ix = uint8(curve.assets.length); Storage.Assimilator storage _reserveAssimilator = curve.assimilators[_reserve]; _reserveAssimilator.addr = _reserveAssim; _reserveAssimilator.ix = uint8(curve.assets.length); int128 __weight = _weight.divu(1e18).add(uint256(1).divu(1e18)); curve.weights.push(__weight); curve.assets.push(_numeraireAssimilator); emit AssetIncluded(_numeraire, _reserve, _weight); emit AssimilatorIncluded(_numeraire, _numeraire, _reserve, _numeraireAssim); if (_numeraireAssim != _reserveAssim) { emit AssimilatorIncluded(_reserve, _numeraire, _reserve, _reserveAssim); } } function viewCurve(Storage.Curve storage curve) external view returns (uint256 alpha_, uint256 beta_, uint256 delta_, uint256 epsilon_, uint256 lambda_) { alpha_ = curve.alpha.mulu(1e18); beta_ = curve.beta.mulu(1e18); delta_ = curve.delta.mulu(1e18); epsilon_ = curve.epsilon.mulu(1e18); lambda_ = curve.lambda.mulu(1e18); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./Assimilators.sol"; import "./Storage.sol"; import "./lib/UnsafeMath64x64.sol"; import "./lib/ABDKMath64x64.sol"; import "./CurveMath.sol"; import "./Structs.sol"; import "./interfaces/IAssimilator.sol"; import "./interfaces/ICurve.sol"; library ProportionalLiquidity { using ABDKMath64x64 for uint256; using ABDKMath64x64 for int128; using UnsafeMath64x64 for int128; using SafeMath for uint256; event Transfer(address indexed from, address indexed to, uint256 value); int128 public constant ONE = 0x10000000000000000; int128 public constant ONE_WEI = 0x12; function proportionalDeposit(Storage.Curve storage curve, DepositData memory depositData) external returns (uint256 curves_, uint256[] memory) { int128 __deposit = depositData.deposits.divu(1e18); uint256 _length = curve.assets.length; uint256[] memory deposits_ = new uint256[](_length); (int128 _oGLiq, int128[] memory _oBals) = getGrossLiquidityAndBalancesForDeposit(curve); // No liquidity, oracle sets the ratio if (_oGLiq == 0) { for (uint256 i = 0; i < _length; i++) { // Variable here to avoid stack-too-deep errors int128 _d = __deposit.mul(curve.weights[i]); deposits_[i] = Assimilators.intakeNumeraire(curve.assets[i].addr, _d.add(ONE_WEI)); } } else { // We already have an existing pool ratio // which must be respected int128 _multiplier = __deposit.div(_oGLiq); uint256 _baseWeight = curve.weights[0].mulu(1e18); uint256 _quoteWeight = curve.weights[1].mulu(1e18); for (uint256 i = 0; i < _length; i++) { IntakeNumLpRatioInfo memory info; info.minBase = depositData.minBase; info.maxBase = depositData.maxBase; info.baseAmt = depositData.baseAmt; info.minQuote = depositData.minQuote; info.quoteAmt = depositData.quoteAmt; info.maxQuote = depositData.maxQuote; info.token0 = depositData.token0; deposits_[i] = Assimilators.intakeNumeraireLPRatio(curve.assets[i].addr, info); } } curves_ = depositData.deposits; require(curves_ > 0, "Proportional Liquidity/can't mint negative amount"); mint(curve, msg.sender, curves_); return (curves_, deposits_); } function viewProportionalDeposit(Storage.Curve storage curve, uint256 _deposit) external view returns (uint256 curves_, uint256[] memory) { int128 __deposit = _deposit.divu(1e18); uint256 _length = curve.assets.length; (int128 _oGLiq, int128[] memory _oBals) = getGrossLiquidityAndBalancesForDeposit(curve); uint256[] memory deposits_ = new uint256[](_length); // No liquidity if (_oGLiq == 0) { for (uint256 i = 0; i < _length; i++) { deposits_[i] = Assimilators.viewRawAmount(curve.assets[i].addr, __deposit.mul(curve.weights[i]).add(ONE_WEI)); } } else { // We already have an existing pool ratio // this must be respected int128 _multiplier = __deposit.div(_oGLiq); uint256 _baseWeight = curve.weights[0].mulu(1e18); uint256 _quoteWeight = curve.weights[1].mulu(1e18); // Deposits into the pool is determined by existing LP ratio for (uint256 i = 0; i < _length; i++) { deposits_[i] = Assimilators.viewRawAmountLPRatio( curve.assets[i].addr, _baseWeight, _quoteWeight, _oBals[i].mul(_multiplier).add(ONE_WEI) ); } } int128 _totalShells = curve.totalSupply.divu(1e18); int128 _newShells = __deposit; if (_totalShells > 0) { _newShells = __deposit.mul(_totalShells); _newShells = _newShells.div(_oGLiq); } curves_ = _newShells.mulu(1e18); return (curves_, deposits_); } function proportionalWithdraw(Storage.Curve storage curve, uint256 _withdrawal, bool _toETH) external returns (uint256[] memory) { uint256 _length = curve.assets.length; (, int128[] memory _oBals) = getGrossLiquidityAndBalances(curve); uint256[] memory withdrawals_ = new uint256[](_length); int128 _totalShells = curve.totalSupply.divu(1e18); int128 __withdrawal = _withdrawal.divu(1e18); int128 _multiplier = __withdrawal.div(_totalShells); for (uint256 i = 0; i < _length; i++) { if ( _toETH && ( IAssimilator(curve.assets[i].addr).underlyingToken() == IAssimilator(curve.assets[i].addr).getWeth() ) ) { withdrawals_[i] = Assimilators.outputNumeraire(curve.assets[i].addr, msg.sender, _oBals[i].mul(_multiplier), true); } else { withdrawals_[i] = Assimilators.outputNumeraire(curve.assets[i].addr, msg.sender, _oBals[i].mul(_multiplier), false); } } burn(curve, msg.sender, _withdrawal); return withdrawals_; } function viewProportionalWithdraw(Storage.Curve storage curve, uint256 _withdrawal) external view returns (uint256[] memory) { uint256 _length = curve.assets.length; (, int128[] memory _oBals) = getGrossLiquidityAndBalances(curve); uint256[] memory withdrawals_ = new uint256[](_length); int128 _multiplier = _withdrawal.divu(1e18).div(curve.totalSupply.divu(1e18)); for (uint256 i = 0; i < _length; i++) { withdrawals_[i] = Assimilators.viewRawAmount(curve.assets[i].addr, _oBals[i].mul(_multiplier)); } return withdrawals_; } function getGrossLiquidityAndBalancesForDeposit(Storage.Curve storage curve) internal view returns (int128 grossLiquidity_, int128[] memory) { uint256 _length = curve.assets.length; int128[] memory balances_ = new int128[](_length); uint256 _baseWeight = curve.weights[0].mulu(1e18); uint256 _quoteWeight = curve.weights[1].mulu(1e18); for (uint256 i = 0; i < _length; i++) { int128 _bal = Assimilators.viewNumeraireBalanceLPRatio(_baseWeight, _quoteWeight, curve.assets[i].addr); balances_[i] = _bal; grossLiquidity_ += _bal; } return (grossLiquidity_, balances_); } function getGrossLiquidityAndBalances(Storage.Curve storage curve) internal view returns (int128 grossLiquidity_, int128[] memory) { uint256 _length = curve.assets.length; int128[] memory balances_ = new int128[](_length); for (uint256 i = 0; i < _length; i++) { int128 _bal = Assimilators.viewNumeraireBalance(curve.assets[i].addr); balances_[i] = _bal; grossLiquidity_ += _bal; } return (grossLiquidity_, balances_); } function burn(Storage.Curve storage curve, address account, uint256 amount) private { curve.balances[account] = burnSub(curve.balances[account], amount); curve.totalSupply = burnSub(curve.totalSupply, amount); emit Transfer(msg.sender, address(0), amount); } function mint(Storage.Curve storage curve, address account, uint256 amount) private { // uint256 minLock = 1e6; uint256 minLock = 1e15; if (curve.totalSupply == 0) { require(amount > minLock, "Proportional Liquidity/amount too small!"); uint256 toMintAmt = amount - minLock; // mint to lp provider curve.totalSupply = mintAdd(curve.totalSupply, toMintAmt); curve.balances[account] = mintAdd(curve.balances[account], toMintAmt); emit Transfer(address(0), msg.sender, toMintAmt); // mint to 0 address curve.totalSupply = mintAdd(curve.totalSupply, minLock); curve.balances[address(0)] = mintAdd(curve.balances[address(0)], minLock); emit Transfer(address(this), address(0), minLock); } else { curve.totalSupply = mintAdd(curve.totalSupply, amount); curve.balances[account] = mintAdd(curve.balances[account], amount); emit Transfer(address(0), msg.sender, amount); } } function mintAdd(uint256 x, uint256 y) private pure returns (uint256 z) { require((z = x + y) >= x, "Curve/mint-overflow"); } function burnSub(uint256 x, uint256 y) private pure returns (uint256 z) { require((z = x - y) <= x, "Curve/burn-underflow"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./Structs.sol"; import "./Assimilators.sol"; import "./Storage.sol"; import "./CurveMath.sol"; import "./lib/UnsafeMath64x64.sol"; import "./lib/ABDKMath64x64.sol"; library Swaps { using ABDKMath64x64 for int128; using ABDKMath64x64 for int256; using UnsafeMath64x64 for int128; using ABDKMath64x64 for uint256; using SafeMath for uint256; event Trade( address indexed trader, address indexed origin, address indexed target, uint256 originAmount, uint256 targetAmount, int128 rawProtocolFee ); int128 public constant ONE = 0x10000000000000000; function getOriginAndTarget(Storage.Curve storage curve, address _o, address _t) private view returns (Storage.Assimilator memory, Storage.Assimilator memory) { Storage.Assimilator memory o_ = curve.assimilators[_o]; Storage.Assimilator memory t_ = curve.assimilators[_t]; require(o_.addr != address(0), "Curve/origin-not-supported"); require(t_.addr != address(0), "Curve/target-not-supported"); return (o_, t_); } function originSwap(Storage.Curve storage curve, OriginSwapData memory _swapData, bool toETH) external returns (uint256 tAmt_) { (Storage.Assimilator memory _o, Storage.Assimilator memory _t) = getOriginAndTarget(curve, _swapData._origin, _swapData._target); require(_swapData._origin != _swapData._target, "swap/same-origin-target"); if (_o.ix == _t.ix) { return Assimilators.outputNumeraire( _t.addr, _swapData._recipient, Assimilators.intakeRaw(_o.addr, _swapData._originAmount), toETH ); } SwapInfo memory _swapInfo; (int128 _amt, int128 _oGLiq, int128 _nGLiq, int128[] memory _oBals, int128[] memory _nBals) = getOriginSwapData(curve, _o.ix, _t.ix, _o.addr, _swapData._originAmount); _swapInfo.totalAmount = _amt; _amt = CurveMath.calculateTrade(curve, _oGLiq, _nGLiq, _oBals, _nBals, _amt, _t.ix); _swapInfo.curveFactory = ICurveFactory(_swapData._curveFactory); _swapInfo.amountToUser = _amt.us_mul(ONE - curve.epsilon); _swapInfo.totalFee = _swapInfo.amountToUser - _amt; _swapInfo.protocolFeePercentage = _swapInfo.curveFactory.getProtocolFee(); _swapInfo.treasury = _swapInfo.curveFactory.getProtocolTreasury(); _swapInfo.amountToTreasury = _swapInfo.totalFee.muli(_swapInfo.protocolFeePercentage).divi(100000); Assimilators.transferFee(_t.addr, _swapInfo.amountToTreasury, _swapInfo.treasury); tAmt_ = Assimilators.outputNumeraire(_t.addr, _swapData._recipient, _swapInfo.amountToUser, toETH); emit Trade( msg.sender, _swapData._origin, _swapData._target, _swapData._originAmount, tAmt_, _swapInfo.amountToTreasury ); } function viewOriginSwap(Storage.Curve storage curve, address _origin, address _target, uint256 _originAmount) external view returns (uint256 tAmt_) { (Storage.Assimilator memory _o, Storage.Assimilator memory _t) = getOriginAndTarget(curve, _origin, _target); if (_o.ix == _t.ix) { return Assimilators.viewRawAmount(_t.addr, Assimilators.viewNumeraireAmount(_o.addr, _originAmount)); } (int128 _amt, int128 _oGLiq, int128 _nGLiq, int128[] memory _nBals, int128[] memory _oBals) = viewOriginSwapData(curve, _o.ix, _t.ix, _originAmount, _o.addr); _amt = CurveMath.calculateTrade(curve, _oGLiq, _nGLiq, _oBals, _nBals, _amt, _t.ix); _amt = _amt.us_mul(ONE - curve.epsilon); tAmt_ = Assimilators.viewRawAmount(_t.addr, _amt.abs()); } function targetSwap(Storage.Curve storage curve, TargetSwapData memory _swapData) external returns (uint256 oAmt_) { (Storage.Assimilator memory _o, Storage.Assimilator memory _t) = getOriginAndTarget(curve, _swapData._origin, _swapData._target); require(_swapData._origin != _swapData._target, "swap/same-origin-target"); if (_o.ix == _t.ix) { return Assimilators.intakeNumeraire( _o.addr, Assimilators.outputRaw(_t.addr, _swapData._recipient, _swapData._targetAmount) ); } (int128 _amt, int128 _oGLiq, int128 _nGLiq, int128[] memory _oBals, int128[] memory _nBals) = getTargetSwapData(curve, _t.ix, _o.ix, _t.addr, _swapData._recipient, _swapData._targetAmount); _amt = CurveMath.calculateTrade(curve, _oGLiq, _nGLiq, _oBals, _nBals, _amt, _o.ix); SwapInfo memory _swapInfo; _swapInfo.totalAmount = _amt; _swapInfo.curveFactory = ICurveFactory(_swapData._curveFactory); _swapInfo.amountToUser = _amt.us_mul(ONE + curve.epsilon); _swapInfo.totalFee = _swapInfo.amountToUser - _amt; _swapInfo.protocolFeePercentage = _swapInfo.curveFactory.getProtocolFee(); _swapInfo.treasury = _swapInfo.curveFactory.getProtocolTreasury(); _swapInfo.amountToTreasury = _swapInfo.totalFee.muli(_swapInfo.protocolFeePercentage).divi(100000); Assimilators.transferFee(_o.addr, _swapInfo.amountToTreasury, _swapInfo.treasury); oAmt_ = Assimilators.intakeNumeraire(_o.addr, _swapInfo.amountToUser); emit Trade( msg.sender, _swapData._origin, _swapData._target, oAmt_, _swapData._targetAmount, _swapInfo.amountToTreasury ); } function viewTargetSwap(Storage.Curve storage curve, address _origin, address _target, uint256 _targetAmount) external view returns (uint256 oAmt_) { (Storage.Assimilator memory _o, Storage.Assimilator memory _t) = getOriginAndTarget(curve, _origin, _target); if (_o.ix == _t.ix) { return Assimilators.viewRawAmount(_o.addr, Assimilators.viewNumeraireAmount(_t.addr, _targetAmount)); } (int128 _amt, int128 _oGLiq, int128 _nGLiq, int128[] memory _nBals, int128[] memory _oBals) = viewTargetSwapData(curve, _t.ix, _o.ix, _targetAmount, _t.addr); _amt = CurveMath.calculateTrade(curve, _oGLiq, _nGLiq, _oBals, _nBals, _amt, _o.ix); _amt = _amt.us_mul(ONE + curve.epsilon); oAmt_ = Assimilators.viewRawAmount(_o.addr, _amt); } function getOriginSwapData( Storage.Curve storage curve, uint256 _inputIx, uint256 _outputIx, address _assim, uint256 _amt ) private returns (int128 amt_, int128 oGLiq_, int128 nGLiq_, int128[] memory, int128[] memory) { uint256 _length = curve.assets.length; int128[] memory oBals_ = new int128[](_length); int128[] memory nBals_ = new int128[](_length); Storage.Assimilator[] memory _reserves = curve.assets; for (uint256 i = 0; i < _length; i++) { if (i != _inputIx) { nBals_[i] = oBals_[i] = Assimilators.viewNumeraireBalance(_reserves[i].addr); } else { int128 _bal; (amt_, _bal) = Assimilators.intakeRawAndGetBalance(_assim, _amt); oBals_[i] = _bal.sub(amt_); nBals_[i] = _bal; } oGLiq_ += oBals_[i]; nGLiq_ += nBals_[i]; } nGLiq_ = nGLiq_.sub(amt_); nBals_[_outputIx] = ABDKMath64x64.sub(nBals_[_outputIx], amt_); return (amt_, oGLiq_, nGLiq_, oBals_, nBals_); } function getTargetSwapData( Storage.Curve storage curve, uint256 _inputIx, uint256 _outputIx, address _assim, address _recipient, uint256 _amt ) private returns (int128 amt_, int128 oGLiq_, int128 nGLiq_, int128[] memory, int128[] memory) { uint256 _length = curve.assets.length; int128[] memory oBals_ = new int128[](_length); int128[] memory nBals_ = new int128[](_length); Storage.Assimilator[] memory _reserves = curve.assets; for (uint256 i = 0; i < _length; i++) { if (i != _inputIx) { nBals_[i] = oBals_[i] = Assimilators.viewNumeraireBalance(_reserves[i].addr); } else { int128 _bal; (amt_, _bal) = Assimilators.outputRawAndGetBalance(_assim, _recipient, _amt); oBals_[i] = _bal.sub(amt_); nBals_[i] = _bal; } oGLiq_ += oBals_[i]; nGLiq_ += nBals_[i]; } nGLiq_ = nGLiq_.sub(amt_); nBals_[_outputIx] = ABDKMath64x64.sub(nBals_[_outputIx], amt_); return (amt_, oGLiq_, nGLiq_, oBals_, nBals_); } function viewOriginSwapData( Storage.Curve storage curve, uint256 _inputIx, uint256 _outputIx, uint256 _amt, address _assim ) private view returns (int128 amt_, int128 oGLiq_, int128 nGLiq_, int128[] memory, int128[] memory) { uint256 _length = curve.assets.length; int128[] memory nBals_ = new int128[](_length); int128[] memory oBals_ = new int128[](_length); for (uint256 i = 0; i < _length; i++) { if (i != _inputIx) { nBals_[i] = oBals_[i] = Assimilators.viewNumeraireBalance(curve.assets[i].addr); } else { int128 _bal; (amt_, _bal) = Assimilators.viewNumeraireAmountAndBalance(_assim, _amt); oBals_[i] = _bal; nBals_[i] = _bal.add(amt_); } oGLiq_ += oBals_[i]; nGLiq_ += nBals_[i]; } nGLiq_ = nGLiq_.sub(amt_); nBals_[_outputIx] = ABDKMath64x64.sub(nBals_[_outputIx], amt_); return (amt_, oGLiq_, nGLiq_, nBals_, oBals_); } function viewTargetSwapData( Storage.Curve storage curve, uint256 _inputIx, uint256 _outputIx, uint256 _amt, address _assim ) private view returns (int128 amt_, int128 oGLiq_, int128 nGLiq_, int128[] memory, int128[] memory) { uint256 _length = curve.assets.length; int128[] memory nBals_ = new int128[](_length); int128[] memory oBals_ = new int128[](_length); for (uint256 i = 0; i < _length; i++) { if (i != _inputIx) { nBals_[i] = oBals_[i] = Assimilators.viewNumeraireBalance(curve.assets[i].addr); } else { int128 _bal; (amt_, _bal) = Assimilators.viewNumeraireAmountAndBalance(_assim, _amt); amt_ = amt_.neg(); oBals_[i] = _bal; nBals_[i] = _bal.add(amt_); } oGLiq_ += oBals_[i]; nGLiq_ += nBals_[i]; } nGLiq_ = nGLiq_.sub(amt_); nBals_[_outputIx] = ABDKMath64x64.sub(nBals_[_outputIx], amt_); return (amt_, oGLiq_, nGLiq_, nBals_, oBals_); } }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "./Storage.sol"; import "./Assimilators.sol"; import "./lib/ABDKMath64x64.sol"; library ViewLiquidity { using ABDKMath64x64 for int128; function viewLiquidity(Storage.Curve storage curve) external view returns (uint256 total_, uint256[] memory individual_) { uint256 _length = curve.assets.length; individual_ = new uint256[](_length); for (uint256 i = 0; i < _length; i++) { uint256 _liquidity = Assimilators.viewNumeraireBalance(curve.assets[i].addr).mulu(1e18); total_ += _liquidity; individual_[i] = _liquidity; } return (total_, individual_); } }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "./interfaces/IOracle.sol"; import "./Assimilators.sol"; contract Storage { struct Curve { // Curve parameters int128 alpha; int128 beta; int128 delta; int128 epsilon; int128 lambda; int128[] weights; // Assets and their assimilators Assimilator[] assets; mapping(address => Assimilator) assimilators; // Oracles to determine the price // Note that 0'th index should always be USDC 1e18 // Oracle's pricing should be denominated in Currency/USDC mapping(address => IOracle) oracles; // ERC20 Interface uint256 totalSupply; mapping(address => uint256) balances; mapping(address => mapping(address => uint256)) allowances; } struct Assimilator { address addr; uint8 ix; } // Curve parameters Curve public curve; // Ownable address public owner; string public name; string public symbol; uint8 public constant decimals = 18; address[] public derivatives; address[] public numeraires; address[] public reserves; // Curve operational state bool public frozen = false; bool public emergency = false; bool public notEntered = true; }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; interface IAssimilator { function oracleDecimals() external view returns (uint256); function underlyingToken() external view returns (address); function getWeth() external view returns (address); function tokenDecimals() external view returns (uint256); function getRate() external view returns (uint256); function intakeRaw(uint256 amount) external payable returns (int128); function intakeRawAndGetBalance(uint256 amount) external payable returns (int128, int128); function intakeNumeraire(int128 amount) external payable returns (uint256); function intakeNumeraireLPRatio(uint256, uint256, uint256, uint256, uint256, uint256, address) external payable returns (uint256); function outputRaw(address dst, uint256 amount) external returns (int128); function outputRawAndGetBalance(address dst, uint256 amount) external returns (int128, int128); function outputNumeraire(address dst, int128 amount, bool toETH) external payable returns (uint256); function viewRawAmount(int128) external view returns (uint256); function viewRawAmountLPRatio(uint256, uint256, address, int128) external view returns (uint256); function viewNumeraireAmount(uint256) external view returns (int128); function viewNumeraireBalanceLPRatio(uint256, uint256, address) external view returns (int128); function viewNumeraireBalance(address) external view returns (int128); function viewNumeraireAmountAndBalance(address, uint256) external view returns (int128, int128); function transferFee(int128, address) external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IConfig { function getGlobalFrozenState() external view returns (bool); function getProtocolFee() external view returns (int128); function getProtocolTreasury() external view returns (address); function setGlobalFrozen(bool) external; function updateProtocolTreasury(address) external; function updateProtocolFee(int128) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "./interfaces/ICurveFactory.sol"; import "./interfaces/IOracle.sol"; struct OriginSwapData { address _origin; address _target; uint256 _originAmount; address _recipient; address _curveFactory; } struct TargetSwapData { address _origin; address _target; uint256 _targetAmount; address _recipient; address _curveFactory; } struct SwapInfo { int128 totalAmount; int128 totalFee; int128 amountToUser; int128 amountToTreasury; int128 protocolFeePercentage; address treasury; ICurveFactory curveFactory; } struct DepositData { uint256 deposits; uint256 minQuote; uint256 minBase; uint256 quoteAmt; uint256 maxQuote; uint256 maxBase; uint256 baseAmt; address token0; uint256 token0Bal; uint256 token1Bal; } struct IntakeNumLpRatioInfo { uint256 baseWeight; uint256 minBase; uint256 maxBase; uint256 baseAmt; uint256 quoteWeight; uint256 minQuote; uint256 maxQuote; uint256 quoteAmt; int128 amount; address token0; uint256 token0Bal; uint256 token1Bal; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "./Storage.sol"; import "./lib/UnsafeMath64x64.sol"; import "./lib/ABDKMath64x64.sol"; library CurveMath { int128 private constant ONE = 0x10000000000000000; int128 private constant MAX = 0x4000000000000000; // .25 in layman's terms int128 private constant MAX_DIFF = -0x10C6F7A0B5EE; int128 private constant ONE_WEI = 0x12; using ABDKMath64x64 for int128; using UnsafeMath64x64 for int128; using ABDKMath64x64 for uint256; // This is used to prevent stack too deep errors function calculateFee(int128 _gLiq, int128[] memory _bals, Storage.Curve storage curve, int128[] memory _weights) internal view returns (int128 psi_) { int128 _beta = curve.beta; int128 _delta = curve.delta; psi_ = calculateFee(_gLiq, _bals, _beta, _delta, _weights); } function calculateFee(int128 _gLiq, int128[] memory _bals, int128 _beta, int128 _delta, int128[] memory _weights) internal pure returns (int128 psi_) { uint256 _length = _bals.length; for (uint256 i = 0; i < _length; i++) { int128 _ideal = _gLiq.mul(_weights[i]); psi_ += calculateMicroFee(_bals[i], _ideal, _beta, _delta); } } function calculateMicroFee(int128 _bal, int128 _ideal, int128 _beta, int128 _delta) private pure returns (int128 fee_) { if (_bal < _ideal) { int128 _threshold = _ideal.mul(ONE - _beta); if (_bal < _threshold) { int128 _feeMargin = _threshold - _bal; fee_ = _feeMargin.mul(_delta); fee_ = fee_.div(_ideal); if (fee_ > MAX) fee_ = MAX; fee_ = fee_.mul(_feeMargin); } else { fee_ = 0; } } else { int128 _threshold = _ideal.mul(ONE + _beta); if (_bal > _threshold) { int128 _feeMargin = _bal - _threshold; fee_ = _feeMargin.mul(_delta); fee_ = fee_.div(_ideal); if (fee_ > MAX) fee_ = MAX; fee_ = fee_.mul(_feeMargin); } else { fee_ = 0; } } } function calculateTrade( Storage.Curve storage curve, int128 _oGLiq, int128 _nGLiq, int128[] memory _oBals, int128[] memory _nBals, int128 _inputAmt, uint256 _outputIndex ) internal view returns (int128 outputAmt_) { outputAmt_ = -_inputAmt; int128 _lambda = curve.lambda; int128[] memory _weights = curve.weights; int128 _omega = calculateFee(_oGLiq, _oBals, curve, _weights); int128 _psi; for (uint256 i = 0; i < 32; i++) { _psi = calculateFee(_nGLiq, _nBals, curve, _weights); int128 prevAmount; { prevAmount = outputAmt_; outputAmt_ = _omega < _psi ? -(_inputAmt + _omega - _psi) : -(_inputAmt + _lambda.mul(_omega - _psi)); } if (outputAmt_ / 1e13 == prevAmount / 1e13) { _nGLiq = _oGLiq + _inputAmt + outputAmt_; _nBals[_outputIndex] = _oBals[_outputIndex] + outputAmt_; enforceHalts(curve, _oGLiq, _nGLiq, _oBals, _nBals, _weights); enforceSwapInvariant(_oGLiq, _omega, _nGLiq, _psi); return outputAmt_; } else { _nGLiq = _oGLiq + _inputAmt + outputAmt_; _nBals[_outputIndex] = _oBals[_outputIndex].add(outputAmt_); } } revert("Curve/swap-convergence-failed"); } function calculateLiquidityMembrane( Storage.Curve storage curve, int128 _oGLiq, int128 _nGLiq, int128[] memory _oBals, int128[] memory _nBals ) internal view returns (int128 curves_) { enforceHalts(curve, _oGLiq, _nGLiq, _oBals, _nBals, curve.weights); int128 _omega; int128 _psi; { int128 _beta = curve.beta; int128 _delta = curve.delta; int128[] memory _weights = curve.weights; _omega = calculateFee(_oGLiq, _oBals, _beta, _delta, _weights); _psi = calculateFee(_nGLiq, _nBals, _beta, _delta, _weights); } int128 _feeDiff = _psi.sub(_omega); int128 _liqDiff = _nGLiq.sub(_oGLiq); int128 _oUtil = _oGLiq.sub(_omega); int128 _totalShells = curve.totalSupply.divu(1e18); int128 _curveMultiplier; if (_totalShells == 0) { curves_ = _nGLiq.sub(_psi); } else if (_feeDiff >= 0) { _curveMultiplier = _liqDiff.sub(_feeDiff).div(_oUtil); } else { _curveMultiplier = _liqDiff.sub(curve.lambda.mul(_feeDiff)); _curveMultiplier = _curveMultiplier.div(_oUtil); } if (_totalShells != 0) { curves_ = _totalShells.mul(_curveMultiplier); } } function enforceSwapInvariant(int128 _oGLiq, int128 _omega, int128 _nGLiq, int128 _psi) private pure { int128 _nextUtil = _nGLiq - _psi; int128 _prevUtil = _oGLiq - _omega; int128 _diff = _nextUtil - _prevUtil; require(0 < _diff || _diff >= MAX_DIFF, "Curve/swap-invariant-violation"); } function enforceHalts( Storage.Curve storage curve, int128 _oGLiq, int128 _nGLiq, int128[] memory _oBals, int128[] memory _nBals, int128[] memory _weights ) private view { uint256 _length = _nBals.length; int128 _alpha = curve.alpha; for (uint256 i = 0; i < _length; i++) { int128 _nIdeal = _nGLiq.mul(_weights[i]); if (_nBals[i] > _nIdeal) { int128 _upperAlpha = ONE + _alpha; int128 _nHalt = _nIdeal.mul(_upperAlpha); if (_nBals[i] > _nHalt) { int128 _oHalt = _oGLiq.mul(_weights[i]).mul(_upperAlpha); if (_oBals[i] < _oHalt) revert("Curve/upper-halt-1"); if (_nBals[i] - _nHalt > _oBals[i] - _oHalt) { revert("Curve/upper-halt-2"); } } } else { int128 _lowerAlpha = ONE - _alpha; int128 _nHalt = _nIdeal.mul(_lowerAlpha); if (_nBals[i] < _nHalt) { int128 _oHalt = _oGLiq.mul(_weights[i]); _oHalt = _oHalt.mul(_lowerAlpha); if (_oBals[i] > _oHalt) revert("Curve/lower-halt"); if (_nHalt - _nBals[i] > _oHalt - _oBals[i]) { revert("Curve/lower-halt"); } } } } } }
// SPDX-License-Identifier: MIT // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.13; import "@openzeppelin/contracts/utils/Address.sol"; import "./interfaces/IAssimilator.sol"; import "./lib/ABDKMath64x64.sol"; import "./Structs.sol"; library Assimilators { using ABDKMath64x64 for int128; using Address for address; IAssimilator public constant iAsmltr = IAssimilator(address(0)); function delegate(address _callee, bytes memory _data) internal returns (bytes memory) { require(_callee.isContract(), "Assimilators/callee-is-not-a-contract"); // solhint-disable-next-line (bool _success, bytes memory returnData_) = _callee.delegatecall(_data); // solhint-disable-next-line assembly { if eq(_success, 0) { revert(add(returnData_, 0x20), returndatasize()) } } return returnData_; } function getRate(address _assim) internal view returns (uint256 amount_) { amount_ = IAssimilator(_assim).getRate(); } function viewRawAmount(address _assim, int128 _amt) internal view returns (uint256 amount_) { amount_ = IAssimilator(_assim).viewRawAmount(_amt); } function viewRawAmountLPRatio(address _assim, uint256 _baseWeight, uint256 _quoteWeight, int128 _amount) internal view returns (uint256 amount_) { amount_ = IAssimilator(_assim).viewRawAmountLPRatio(_baseWeight, _quoteWeight, address(this), _amount); } function viewNumeraireAmount(address _assim, uint256 _amt) internal view returns (int128 amt_) { amt_ = IAssimilator(_assim).viewNumeraireAmount(_amt); } function viewNumeraireAmountAndBalance(address _assim, uint256 _amt) internal view returns (int128 amt_, int128 bal_) { (amt_, bal_) = IAssimilator(_assim).viewNumeraireAmountAndBalance(address(this), _amt); } function viewNumeraireBalance(address _assim) internal view returns (int128 bal_) { bal_ = IAssimilator(_assim).viewNumeraireBalance(address(this)); } function viewNumeraireBalanceLPRatio(uint256 _baseWeight, uint256 _quoteWeight, address _assim) internal view returns (int128 bal_) { bal_ = IAssimilator(_assim).viewNumeraireBalanceLPRatio(_baseWeight, _quoteWeight, address(this)); } function intakeRaw(address _assim, uint256 _amt) internal returns (int128 amt_) { bytes memory data = abi.encodeWithSelector(iAsmltr.intakeRaw.selector, _amt); amt_ = abi.decode(delegate(_assim, data), (int128)); } function intakeRawAndGetBalance(address _assim, uint256 _amt) internal returns (int128 amt_, int128 bal_) { bytes memory data = abi.encodeWithSelector(iAsmltr.intakeRawAndGetBalance.selector, _amt); (amt_, bal_) = abi.decode(delegate(_assim, data), (int128, int128)); } function intakeNumeraire(address _assim, int128 _amt) internal returns (uint256 amt_) { bytes memory data = abi.encodeWithSelector(iAsmltr.intakeNumeraire.selector, _amt); amt_ = abi.decode(delegate(_assim, data), (uint256)); } function intakeNumeraireLPRatio(address _assim, IntakeNumLpRatioInfo memory info) internal returns (uint256 amt_) { bytes memory data = abi.encodeWithSelector( iAsmltr.intakeNumeraireLPRatio.selector, info.minBase, info.maxBase, info.baseAmt, info.minQuote, info.maxQuote, info.quoteAmt, info.token0 ); amt_ = abi.decode(delegate(_assim, data), (uint256)); } function outputRaw(address _assim, address _dst, uint256 _amt) internal returns (int128 amt_) { bytes memory data = abi.encodeWithSelector(iAsmltr.outputRaw.selector, _dst, _amt); amt_ = abi.decode(delegate(_assim, data), (int128)); amt_ = amt_.neg(); } function outputRawAndGetBalance(address _assim, address _dst, uint256 _amt) internal returns (int128 amt_, int128 bal_) { bytes memory data = abi.encodeWithSelector(iAsmltr.outputRawAndGetBalance.selector, _dst, _amt); (amt_, bal_) = abi.decode(delegate(_assim, data), (int128, int128)); amt_ = amt_.neg(); } function outputNumeraire(address _assim, address _dst, int128 _amt, bool _toETH) internal returns (uint256 amt_) { bytes memory data = abi.encodeWithSelector(iAsmltr.outputNumeraire.selector, _dst, _amt.abs(), _toETH); amt_ = abi.decode(delegate(_assim, data), (uint256)); } function transferFee(address _assim, int128 _amt, address _treasury) internal { bytes memory data = abi.encodeWithSelector(iAsmltr.transferFee.selector, _amt, _treasury); delegate(_assim, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; library UnsafeMath64x64 { /** * Calculate x * y rounding down. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function us_mul(int128 x, int128 y) internal pure returns (int128) { int256 result = int256(x) * y >> 64; return int128(result); } /** * Calculate x / y rounding towards zero. Revert on overflow or when y is * zero. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function us_div(int128 x, int128 y) internal pure returns (int128) { int256 result = (int256(x) << 64) / y; return int128(result); } }
{ "remappings": [ "@openzeppelin/=lib/openzeppelin-contracts/", "@forge-std/=lib/forge-std/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_quoteAmount","type":"uint256"}],"name":"calcMaxBaseForDeposit","outputs":[{"internalType":"uint256","name":"baseAmount","type":"uint256"},{"internalType":"uint256","name":"usdAmount","type":"uint256"},{"internalType":"uint256","name":"lptAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_baseAmount","type":"uint256"}],"name":"calcMaxDepositAmountGivenBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_quoteAmount","type":"uint256"}],"name":"calcMaxDepositAmountGivenQuote","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_baseAmount","type":"uint256"}],"name":"calcMaxQuoteForDeposit","outputs":[{"internalType":"uint256","name":"quoteAmount","type":"uint256"},{"internalType":"uint256","name":"usdAmount","type":"uint256"},{"internalType":"uint256","name":"lptAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_zapAmount","type":"uint256"},{"internalType":"bool","name":"isFromBase","type":"bool"}],"name":"calcSwapAmountForZap","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_zapAmount","type":"uint256"}],"name":"calcSwapAmountForZapFromBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_zapAmount","type":"uint256"}],"name":"calcSwapAmountForZapFromQuote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curveFactory","outputs":[{"internalType":"contract ICurveFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_lpAmount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint256","name":"_minTokenAmount","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"bool","name":"_toETH","type":"bool"}],"name":"unzap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_zapAmount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint256","name":"_minLPAmount","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"name":"zap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_curve","type":"address"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint256","name":"_minLPAmount","type":"uint256"}],"name":"zapETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162003a1638038062003a16833981016040819052620000349162000046565b6001600160a01b031660805262000078565b6000602082840312156200005957600080fd5b81516001600160a01b03811681146200007157600080fd5b9392505050565b60805161396d620000a9600039600081816102060152818161084701528181610daf0152611117015261396d6000f3fe60806040526004361061009c5760003560e01c8063a8efe44b11610064578063a8efe44b14610182578063ab28d778146101a2578063ad0883c3146101e1578063ae6836d6146101f4578063afefae2c14610240578063cfe5a9ed1461026057600080fd5b80632e3822f9146100a157806346275e89146100d9578063598fab151461011457806363ee81b1146101345780637492aa7314610162575b600080fd5b3480156100ad57600080fd5b506100c16100bc366004613281565b610280565b6040516100d0939291906132ad565b60405180910390f35b3480156100e557600080fd5b506100f96100f4366004613281565b61033d565b604080519384526020840192909252908201526060016100d0565b34801561012057600080fd5b506100f961012f366004613281565b61056f565b34801561014057600080fd5b5061015461014f366004613281565b61075b565b6040519081526020016100d0565b34801561016e57600080fd5b506100c161017d366004613281565b610775565b34801561018e57600080fd5b5061015461019d366004613302565b610823565b3480156101ae57600080fd5b506101c26101bd366004613366565b610a72565b604080516001600160a01b0390931683526020830191909152016100d0565b6101546101ef3660046133a8565b610d8b565b34801561020057600080fd5b506102287f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100d0565b34801561024c57600080fd5b5061015461025b3660046133dd565b6110f3565b34801561026c57600080fd5b5061015461027b366004613281565b61191a565b60008060606000610291868661056f565b5050604051638334278d60e01b81526000600482018190529192506001600160a01b03881690638334278d90602401602060405180830381865afa1580156102dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103019190613444565b905061032e878260405180608001604052808a81526020018681526020018a815260200186815250611929565b94509450945050509250925092565b600080600080856001600160a01b0316638334278d60016040518263ffffffff1660e01b815260040161037291815260200190565b602060405180830381865afa15801561038f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b39190613444565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104149190613461565b905060128160ff1611156104435760405162461bcd60e51b815260040161043a90613484565b60405180910390fd5b604051636f2ef95b60e01b8152671bc16d674ec8000060048201526000906001600160a01b03881690636f2ef95b90602401600060405180830381865afa158015610492573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ba9190810190613554565b91505060006105266104f464e8d4a51000846000815181106104de576104de61359b565b6020026020010151611dcb90919063ffffffff16565b6105206105028660246135c7565b61050d90600a6136c4565b856001815181106104de576104de61359b565b90611dde565b905061055364e8d4a5100061052083816105418860246135c7565b61054c90600a6136c4565b8c90611dcb565b9550610560888789611dea565b96999098509596505050505050565b600080600080856001600160a01b0316638334278d60006040518263ffffffff1660e01b81526004016105a491815260200190565b602060405180830381865afa1580156105c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e59190613444565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610622573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106469190613461565b905060128160ff16111561066c5760405162461bcd60e51b815260040161043a90613484565b604051636f2ef95b60e01b8152671bc16d674ec8000060048201526000906001600160a01b03881690636f2ef95b90602401600060405180830381865afa1580156106bb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106e39190810190613554565b915050600061073361070764e8d4a51000846001815181106104de576104de61359b565b6105206107158660246135c7565b61072090600a6136c4565b856000815181106104de576104de61359b565b905061074e64e8d4a5100061052083816105418860246135c7565b9550610560888888611dea565b60008061076a84846000610a72565b925050505b92915050565b60008060606000610786868661033d565b5050604051638334278d60e01b81526000600482018190529192506001600160a01b03881690638334278d90602401602060405180830381865afa1580156107d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f69190613444565b905061032e878260405180608001604052808681526020018a81526020018681526020018a815250611929565b60405163dfcb53cd60e01b81526001600160a01b03808716600483015260009187917f0000000000000000000000000000000000000000000000000000000000000000169063dfcb53cd90602401602060405180830381865afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b291906136d3565b6108ce5760405162461bcd60e51b815260040161043a906136f0565b60405163151d3aa560e31b8152600060048201819052906001600160a01b0389169063a8e9d52890602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a9190613444565b60405163151d3aa560e31b8152600160048201529091506000906001600160a01b038a169063a8e9d52890602401602060405180830381865afa158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190613444565b9050816001600160a01b0316856001600160a01b031614806109dc5750806001600160a01b0316856001600160a01b0316145b6109f85760405162461bcd60e51b815260040161043a9061371b565b6000826001600160a01b0316866001600160a01b031614610a1a576000610a1d565b60015b90506000610a2c8b8b84610a72565b9150508115610a4857610a438b8585848d8f612155565b610a56565b610a568b8585848d8f612214565b610a638b85858c8c612287565b9b9a5050505050505050505050565b6000806000856001600160a01b0316638334278d60006040518263ffffffff1660e01b8152600401610aa691815260200190565b602060405180830381865afa158015610ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae79190613444565b604051638334278d60e01b8152600160048201529091506000906001600160a01b03881690638334278d90602401602060405180830381865afa158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b569190613444565b6040516370a0823160e01b81526001600160a01b0389811660048301529192506000918416906370a0823190602401602060405180830381865afa158015610ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc69190613752565b90506000836001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2c9190613461565b6040516370a0823160e01b81526001600160a01b038b811660048301529192506000918516906370a0823190602401602060405180830381865afa158015610c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c9190613752565b90506000610cab8a6002611dde565b90508815610d1d5785610d0e826040518060e001604052808f6001600160a01b031681526020018a6001600160a01b03168152602001896001600160a01b031681526020018e81526020018881526020018760ff168152602001868152506127fc565b97509750505050505050610d83565b85610d78826040518060e001604052808f6001600160a01b031681526020018a6001600160a01b03168152602001896001600160a01b031681526020018e81526020018881526020018760ff16815260200186815250612a46565b975097505050505050505b935093915050565b60405163dfcb53cd60e01b81526001600160a01b03808516600483015260009185917f0000000000000000000000000000000000000000000000000000000000000000169063dfcb53cd90602401602060405180830381865afa158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a91906136d3565b610e365760405162461bcd60e51b815260040161043a906136f0565b60003411610e7f5760405162461bcd60e51b81526020600482015260166024820152757a61702f7a61702d616d6f756e742d69732d7a65726f60501b604482015260640161043a565b6000856001600160a01b031663107c279f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ebf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee39190613444565b9050806001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f2057600080fd5b505af1158015610f34573d6000803e3d6000fd5b50610f50935050506001600160a01b0383169050303334612c5c565b60405163151d3aa560e31b8152600060048201819052906001600160a01b0388169063a8e9d52890602401602060405180830381865afa158015610f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbc9190613444565b60405163151d3aa560e31b8152600160048201529091506000906001600160a01b0389169063a8e9d52890602401602060405180830381865afa158015611007573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102b9190613444565b9050816001600160a01b0316836001600160a01b0316148061105e5750806001600160a01b0316836001600160a01b0316145b61107a5760405162461bcd60e51b815260040161043a9061371b565b6000826001600160a01b0316846001600160a01b03161461109c57600061109f565b60015b905060006110ae8a3484610a72565b91505081156110ca576110c58a8585848d34612155565b6110d8565b6110d88a8585848d34612214565b6110e58a85858c8c612287565b9a9950505050505050505050565b60405163dfcb53cd60e01b81526001600160a01b03808816600483015260009188917f0000000000000000000000000000000000000000000000000000000000000000169063dfcb53cd90602401602060405180830381865afa15801561115e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118291906136d3565b61119e5760405162461bcd60e51b815260040161043a906136f0565b6000886001600160a01b031663107c279f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112029190613444565b60405163151d3aa560e31b81526000600482018190529192506001600160a01b038b169063a8e9d52890602401602060405180830381865afa15801561124c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112709190613444565b60405163151d3aa560e31b8152600160048201529091506000906001600160a01b038c169063a8e9d52890602401602060405180830381865afa1580156112bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112df9190613444565b9050816001600160a01b0316876001600160a01b031614806113125750806001600160a01b0316876001600160a01b0316145b61132e5760405162461bcd60e51b815260040161043a9061371b565b6113436001600160a01b038c1633308d612c5c565b604051630441a3e760e41b8152600481018b9052602481018a90526001600160a01b038c169063441a3e70906044016000604051808303816000875af1158015611391573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113b9919081019061376b565b50816001600160a01b0316876001600160a01b0316036116dd576040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561141a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143e9190613752565b90506114556001600160a01b0384168d6000612ccd565b61146b6001600160a01b0384168d600019612ccd565b8b6001600160a01b0316630b2583c884848460008f6040518663ffffffff1660e01b81526004016114a09594939291906137a0565b6020604051808303816000875af11580156114bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e39190613752565b506040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561152b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154f9190613752565b9050898110156115a15760405162461bcd60e51b815260206004820152601e60248201527f21556e7a61702f6e6f742d656e6f7567682d746f6b656e2d616d6f756e740000604482015260640161043a565b846001600160a01b0316836001600160a01b03161480156115bf5750875b156116bd57604051632e1a7d4d60e01b8152600481018290526001600160a01b03861690632e1a7d4d906024015b600060405180830381600087803b15801561160757600080fd5b505af115801561161b573d6000803e3d6000fd5b50506040516000925033915083908381818185875af1925050503d8060008114611661576040519150601f19603f3d011682016040523d82523d6000602084013e611666565b606091505b50509050806116b75760405162461bcd60e51b815260206004820152601760248201527f7a61702f756e7a61702d746f2d6574682d6661696c6564000000000000000000604482015260640161043a565b506116d1565b6116d16001600160a01b0384163383612de7565b955061190f9350505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611724573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117489190613752565b905061175f6001600160a01b0383168d6000612ccd565b6117756001600160a01b0383168d600019612ccd565b8b6001600160a01b0316630b2583c883858460008f6040518663ffffffff1660e01b81526004016117aa9594939291906137a0565b6020604051808303816000875af11580156117c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ed9190613752565b506040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611835573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118599190613752565b9050898110156118ab5760405162461bcd60e51b815260206004820152601e60248201527f21556e7a61702f6e6f742d656e6f7567682d746f6b656e2d616d6f756e740000604482015260640161043a565b846001600160a01b0316846001600160a01b03161480156118c95750875b156118fb57604051632e1a7d4d60e01b8152600481018390526001600160a01b03861690632e1a7d4d906024016115ed565b6116d16001600160a01b0385163383612de7565b509695505050505050565b60008061076a84846001610a72565b60008060606000866001600160a01b031663a8e9d52860016040518263ffffffff1660e01b815260040161195f91815260200190565b602060405180830381865afa15801561197c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a09190613444565b90506012866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a069190613461565b60ff161115611a275760405162461bcd60e51b815260040161043a90613484565b6040516370a0823160e01b81526001600160a01b038881166004830152600091611b5391611aaa9164e8d4a51000918616906370a08231906024015b602060405180830381865afa158015611a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa49190613752565b90611dcb565b610520896001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0f9190613461565b611b1a9060246135c7565b611b2590600a6136c4565b6040516370a0823160e01b81526001600160a01b038d811660048301528c16906370a0823190602401611a63565b90506000611b7364e8d4a510008860200151611dcb90919063ffffffff16565b90506000611bfa896001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdc9190613461565b611be79060126135c7565b611bf290600a6136c4565b895190611dcb565b90506000611c1e611c178561052085670de0b6b3a7640000611dcb565b8490612e17565b9050611c2981612e23565b90506000808c6001600160a01b0316636f2ef95b846040518263ffffffff1660e01b8152600401611c5c91815260200190565b600060405180830381865afa158015611c79573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ca19190810190613554565b9150915060008b6040015182600081518110611cbf57611cbf61359b565b602002602001015111611cd3576000611d04565b611d048c6000015183600081518110611cee57611cee61359b565b6020026020010151612e3b90919063ffffffff16565b905060008c6060015183600181518110611d2057611d2061359b565b602002602001015111611d34576000611d4f565b611d4f8d6020015184600181518110611cee57611cee61359b565b90506000821180611d605750600081115b15611db3578c51611d7a90611d759084612e3b565b612e23565b8d5260208d0151611d8f90611d759083612e3b565b60208e0152611d9f8f8f8f611929565b9b509b509b50505050505050505050611dc2565b50929950909750955050505050505b93509350939050565b6000611dd782846137d1565b9392505050565b6000611dd782846137e8565b604051638334278d60e01b8152600060048201819052908190859082906001600160a01b03831690638334278d90602401602060405180830381865afa158015611e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5c9190613444565b604051638334278d60e01b8152600160048201529091506000906001600160a01b03841690638334278d90602401602060405180830381865afa158015611ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecb9190613444565b6040516370a0823160e01b81526001600160a01b038a811660048301529192506000918416906370a0823190602401602060405180830381865afa158015611f17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3b9190613752565b6040516370a0823160e01b81526001600160a01b038b811660048301529192506000918416906370a0823190602401602060405180830381865afa158015611f87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fab9190613752565b604051633cae77f760e01b81526001600160a01b038681166004830152919250600091871690633cae77f790602401602060405180830381865afa158015611ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201b9190613444565b604051633cae77f760e01b81526001600160a01b038681166004830152919250600091881690633cae77f790602401602060405180830381865afa158015612067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208b9190613444565b905061209881868c612e47565b6120a383888e612e47565b6120ad919061380a565b985060006120bc828786612e47565b6120c7848988612e47565b6120d1919061380a565b9050612143816105208a6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612118573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213c9190613752565b8d90611dcb565b98505050505050505050935093915050565b61216a6001600160a01b038616333084612c5c565b61217f6001600160a01b038616876000612ccd565b6121936001600160a01b0386168785612ccd565b604051630164b07960e31b81526001600160a01b03871690630b2583c8906121c89088908890889060009089906004016137a0565b6020604051808303816000875af11580156121e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220b9190613752565b50505050505050565b6122296001600160a01b038516333084612c5c565b61223e6001600160a01b038516876000612ccd565b6122526001600160a01b0385168785612ccd565b604051630164b07960e31b81526001600160a01b03871690630b2583c8906121c89087908990889060009089906004016137a0565b6040805160808101918290526370a0823160e01b909152306084820152600090819061245d9088908890806001600160a01b0383166370a0823160a48301602060405180830381865afa1580156122e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123069190613752565b81526040516370a0823160e01b81523060048201526020909101906001600160a01b038b16906370a0823190602401602060405180830381865afa158015612352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123769190613752565b81526040516370a0823160e01b81523060048201526020909101906001600160a01b038c16906370a0823190602401602060405180830381865afa1580156123c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e69190613752565b81526040516370a0823160e01b81523060048201526020909101906001600160a01b038b16906370a0823190602401602060405180830381865afa158015612432573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124569190613752565b9052611929565b5090915061247890506001600160a01b038716886000612ccd565b6040516370a0823160e01b81523060048201526124f79088906001600160a01b038916906370a0823190602401602060405180830381865afa1580156124c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e69190613752565b6001600160a01b0389169190612ccd565b61250c6001600160a01b038616886000612ccd565b6040516370a0823160e01b815230600482015261258b9088906001600160a01b038816906370a0823190602401602060405180830381865afa158015612556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257a9190613752565b6001600160a01b0388169190612ccd565b604051632c3913c560e11b8152600481018290526000602482018190526044820181905260001960648301819052608483015260a48201869052906001600160a01b03891690635872278a9060c4016000604051808303816000875af11580156125f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126219190810190613554565b509050838110156126745760405162461bcd60e51b815260206004820152601960248201527f215a61702f6e6f742d656e6f7567682d6c702d616d6f756e7400000000000000604482015260640161043a565b6040516370a0823160e01b81523060048201526126f39033906001600160a01b038b16906370a0823190602401602060405180830381865afa1580156126be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e29190613752565b6001600160a01b038b169190612de7565b6040516370a0823160e01b81523060048201526127729033906001600160a01b038a16906370a0823190602401602060405180830381865afa15801561273d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127619190613752565b6001600160a01b038a169190612de7565b6040516370a0823160e01b81523060048201526127f19033906001600160a01b038916906370a0823190602401602060405180830381865afa1580156127bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e09190613752565b6001600160a01b0389169190612de7565b979650505050505050565b6000828161280b826002611dde565b905060008080805b6020811015612a0857875160208901516040808b015190516341c7351160e11b81526001600160a01b03928316600482015290821660248201526044810189905291169063838e6a2290606401602060405180830381865afa15801561287d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a19190613752565b935060128860a0015160ff1611156128cb5760405162461bcd60e51b815260040161043a90613484565b61290e6128dd8564e8d4a51000611dcb565b6105208a60a0015160ff1660246128f4919061381d565b6128ff90600a613830565b60608c0151611aa4908b612e3b565b915061296461293364e8d4a51000611aa4878c60c00151612e3b90919063ffffffff16565b6105208a60a0015160ff16602461294a919061381d565b61295590600a613830565b60808c0151611aa4908b612e17565b925061297783662386f26fc10000611dde565b61298883662386f26fc10000611dde565b0361299b5785965050505050505061076f565b828211156129b4576129ad8686612e17565b95506129c9565b828210156129c9576129c68686612e3b565b95505b87606001518611156129e957600188606001516129e6919061381d565b95505b6129f4856002611dde565b945080612a008161383c565b915050612813565b5060405162461bcd60e51b81526020600482015260126024820152715a61702f6e6f742d636f6e76657267696e6760701b604482015260640161043a565b60008281612a55826002611dde565b905060008080805b6020811015612a085787516040808a015160208b015191516341c7351160e11b81526001600160a01b0391821660048201529181166024830152604482018990529091169063838e6a2290606401602060405180830381865afa158015612ac8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aec9190613752565b935060128860a0015160ff161115612b165760405162461bcd60e51b815260040161043a90613484565b612b62612b3964e8d4a51000611aa4898c60600151612e3b90919063ffffffff16565b6105208a60a0015160ff166024612b50919061381d565b612b5b90600a613830565b8790611dcb565b9150612bb8612b8764e8d4a51000611aa4898c60c00151612e1790919063ffffffff16565b6105208a60a0015160ff166024612b9e919061381d565b612ba990600a613830565b60808c0151611aa49089612e3b565b9250612bcb83662386f26fc10000611dde565b612bdc83662386f26fc10000611dde565b03612bef5785965050505050505061076f565b82821115612c0857612c018686612e3b565b9550612c1d565b82821015612c1d57612c1a8686612e17565b95505b8760600151861115612c3d5760018860600151612c3a919061381d565b95505b612c48856002611dde565b945080612c548161383c565b915050612a5d565b6040516001600160a01b0380851660248301528316604482015260648101829052612cc79085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613017565b50505050565b801580612d475750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612d21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d459190613752565b155b612db25760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161043a565b6040516001600160a01b038316602482015260448101829052612de290849063095ea7b360e01b90606401612c90565b505050565b6040516001600160a01b038316602482015260448101829052612de290849063a9059cbb60e01b90606401612c90565b6000611dd7828461380a565b600061076f6305f5e100610520846305f5e0ff611dcb565b6000611dd7828461381d565b600080846001600160a01b0316637dc0d1d06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eac9190613444565b90506000816001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015612eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f129190613874565b50505091505061300d856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f7d9190613461565b612f8890600a6136c4565b610520846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fed9190613461565b612ff89060126135c7565b61300390600a6136c4565b611aa48886611dcb565b9695505050505050565b600061306c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130e99092919063ffffffff16565b805190915015612de2578080602001905181019061308a91906136d3565b612de25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161043a565b60606130f88484600085613100565b949350505050565b6060824710156131615760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161043a565b600080866001600160a01b0316858760405161317d91906138e8565b60006040518083038185875af1925050503d80600081146131ba576040519150601f19603f3d011682016040523d82523d6000602084013e6131bf565b606091505b50915091506127f1878383876060831561323a578251600003613233576001600160a01b0385163b6132335760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161043a565b50816130f8565b6130f8838381511561324f5781518083602001fd5b8060405162461bcd60e51b815260040161043a9190613904565b6001600160a01b038116811461327e57600080fd5b50565b6000806040838503121561329457600080fd5b823561329f81613269565b946020939093013593505050565b6000606082018583526020858185015260606040850152818551808452608086019150828701935060005b818110156132f4578451835293830193918301916001016132d8565b509098975050505050505050565b600080600080600060a0868803121561331a57600080fd5b853561332581613269565b9450602086013593506040860135925060608601359150608086013561334a81613269565b809150509295509295909350565b801515811461327e57600080fd5b60008060006060848603121561337b57600080fd5b833561338681613269565b925060208401359150604084013561339d81613358565b809150509250925092565b6000806000606084860312156133bd57600080fd5b83356133c881613269565b95602085013595506040909401359392505050565b60008060008060008060c087890312156133f657600080fd5b863561340181613269565b9550602087013594506040870135935060608701359250608087013561342681613269565b915060a087013561343681613358565b809150509295509295509295565b60006020828403121561345657600080fd5b8151611dd781613269565b60006020828403121561347357600080fd5b815160ff81168114611dd757600080fd5b60208082526010908201526f7a61702f6269672d646563696d616c7360801b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126134d557600080fd5b8151602067ffffffffffffffff808311156134f2576134f26134ae565b8260051b604051601f19603f83011681018181108482111715613517576135176134ae565b60405293845285810183019383810192508785111561353557600080fd5b83870191505b848210156127f15781518352918301919083019061353b565b6000806040838503121561356757600080fd5b82519150602083015167ffffffffffffffff81111561358557600080fd5b613591858286016134c4565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111561076f5761076f6135b1565b600181815b8085111561361b578160001904821115613601576136016135b1565b8085161561360e57918102915b93841c93908002906135e5565b509250929050565b6000826136325750600161076f565b8161363f5750600061076f565b8160018114613655576002811461365f5761367b565b600191505061076f565b60ff841115613670576136706135b1565b50506001821b61076f565b5060208310610133831016604e8410600b841016171561369e575081810a61076f565b6136a883836135e0565b80600019048211156136bc576136bc6135b1565b029392505050565b6000611dd760ff841683613623565b6000602082840312156136e557600080fd5b8151611dd781613358565b6020808252601190820152707a61702f696e76616c69642d637572766560781b604082015260600190565b60208082526017908201527f7a61702f746f6b656e2d6e6f742d737570706f72746564000000000000000000604082015260600190565b60006020828403121561376457600080fd5b5051919050565b60006020828403121561377d57600080fd5b815167ffffffffffffffff81111561379457600080fd5b6130f8848285016134c4565b6001600160a01b03958616815293909416602084015260408301919091526060820152608081019190915260a00190565b808202811582820484141761076f5761076f6135b1565b60008261380557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561076f5761076f6135b1565b8181038181111561076f5761076f6135b1565b6000611dd78383613623565b60006001820161384e5761384e6135b1565b5060010190565b805169ffffffffffffffffffff8116811461386f57600080fd5b919050565b600080600080600060a0868803121561388c57600080fd5b61389586613855565b94506020860151935060408601519250606086015191506138b860808701613855565b90509295509295909350565b60005b838110156138df5781810151838201526020016138c7565b50506000910152565b600082516138fa8184602087016138c4565b9190910192915050565b60208152600082518060208401526139238160408501602087016138c4565b601f01601f1916919091016040019291505056fea26469706673582212203fd5cebfb33afc7e4ead0f1ce7eef7c7660fa2b32f65cb1ef2b63b45d14f669764736f6c634300081500330000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae9
Deployed Bytecode
0x60806040526004361061009c5760003560e01c8063a8efe44b11610064578063a8efe44b14610182578063ab28d778146101a2578063ad0883c3146101e1578063ae6836d6146101f4578063afefae2c14610240578063cfe5a9ed1461026057600080fd5b80632e3822f9146100a157806346275e89146100d9578063598fab151461011457806363ee81b1146101345780637492aa7314610162575b600080fd5b3480156100ad57600080fd5b506100c16100bc366004613281565b610280565b6040516100d0939291906132ad565b60405180910390f35b3480156100e557600080fd5b506100f96100f4366004613281565b61033d565b604080519384526020840192909252908201526060016100d0565b34801561012057600080fd5b506100f961012f366004613281565b61056f565b34801561014057600080fd5b5061015461014f366004613281565b61075b565b6040519081526020016100d0565b34801561016e57600080fd5b506100c161017d366004613281565b610775565b34801561018e57600080fd5b5061015461019d366004613302565b610823565b3480156101ae57600080fd5b506101c26101bd366004613366565b610a72565b604080516001600160a01b0390931683526020830191909152016100d0565b6101546101ef3660046133a8565b610d8b565b34801561020057600080fd5b506102287f0000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae981565b6040516001600160a01b0390911681526020016100d0565b34801561024c57600080fd5b5061015461025b3660046133dd565b6110f3565b34801561026c57600080fd5b5061015461027b366004613281565b61191a565b60008060606000610291868661056f565b5050604051638334278d60e01b81526000600482018190529192506001600160a01b03881690638334278d90602401602060405180830381865afa1580156102dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103019190613444565b905061032e878260405180608001604052808a81526020018681526020018a815260200186815250611929565b94509450945050509250925092565b600080600080856001600160a01b0316638334278d60016040518263ffffffff1660e01b815260040161037291815260200190565b602060405180830381865afa15801561038f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b39190613444565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104149190613461565b905060128160ff1611156104435760405162461bcd60e51b815260040161043a90613484565b60405180910390fd5b604051636f2ef95b60e01b8152671bc16d674ec8000060048201526000906001600160a01b03881690636f2ef95b90602401600060405180830381865afa158015610492573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ba9190810190613554565b91505060006105266104f464e8d4a51000846000815181106104de576104de61359b565b6020026020010151611dcb90919063ffffffff16565b6105206105028660246135c7565b61050d90600a6136c4565b856001815181106104de576104de61359b565b90611dde565b905061055364e8d4a5100061052083816105418860246135c7565b61054c90600a6136c4565b8c90611dcb565b9550610560888789611dea565b96999098509596505050505050565b600080600080856001600160a01b0316638334278d60006040518263ffffffff1660e01b81526004016105a491815260200190565b602060405180830381865afa1580156105c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e59190613444565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610622573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106469190613461565b905060128160ff16111561066c5760405162461bcd60e51b815260040161043a90613484565b604051636f2ef95b60e01b8152671bc16d674ec8000060048201526000906001600160a01b03881690636f2ef95b90602401600060405180830381865afa1580156106bb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106e39190810190613554565b915050600061073361070764e8d4a51000846001815181106104de576104de61359b565b6105206107158660246135c7565b61072090600a6136c4565b856000815181106104de576104de61359b565b905061074e64e8d4a5100061052083816105418860246135c7565b9550610560888888611dea565b60008061076a84846000610a72565b925050505b92915050565b60008060606000610786868661033d565b5050604051638334278d60e01b81526000600482018190529192506001600160a01b03881690638334278d90602401602060405180830381865afa1580156107d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f69190613444565b905061032e878260405180608001604052808681526020018a81526020018681526020018a815250611929565b60405163dfcb53cd60e01b81526001600160a01b03808716600483015260009187917f0000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae9169063dfcb53cd90602401602060405180830381865afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b291906136d3565b6108ce5760405162461bcd60e51b815260040161043a906136f0565b60405163151d3aa560e31b8152600060048201819052906001600160a01b0389169063a8e9d52890602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a9190613444565b60405163151d3aa560e31b8152600160048201529091506000906001600160a01b038a169063a8e9d52890602401602060405180830381865afa158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190613444565b9050816001600160a01b0316856001600160a01b031614806109dc5750806001600160a01b0316856001600160a01b0316145b6109f85760405162461bcd60e51b815260040161043a9061371b565b6000826001600160a01b0316866001600160a01b031614610a1a576000610a1d565b60015b90506000610a2c8b8b84610a72565b9150508115610a4857610a438b8585848d8f612155565b610a56565b610a568b8585848d8f612214565b610a638b85858c8c612287565b9b9a5050505050505050505050565b6000806000856001600160a01b0316638334278d60006040518263ffffffff1660e01b8152600401610aa691815260200190565b602060405180830381865afa158015610ac3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae79190613444565b604051638334278d60e01b8152600160048201529091506000906001600160a01b03881690638334278d90602401602060405180830381865afa158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b569190613444565b6040516370a0823160e01b81526001600160a01b0389811660048301529192506000918416906370a0823190602401602060405180830381865afa158015610ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc69190613752565b90506000836001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2c9190613461565b6040516370a0823160e01b81526001600160a01b038b811660048301529192506000918516906370a0823190602401602060405180830381865afa158015610c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c9190613752565b90506000610cab8a6002611dde565b90508815610d1d5785610d0e826040518060e001604052808f6001600160a01b031681526020018a6001600160a01b03168152602001896001600160a01b031681526020018e81526020018881526020018760ff168152602001868152506127fc565b97509750505050505050610d83565b85610d78826040518060e001604052808f6001600160a01b031681526020018a6001600160a01b03168152602001896001600160a01b031681526020018e81526020018881526020018760ff16815260200186815250612a46565b975097505050505050505b935093915050565b60405163dfcb53cd60e01b81526001600160a01b03808516600483015260009185917f0000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae9169063dfcb53cd90602401602060405180830381865afa158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a91906136d3565b610e365760405162461bcd60e51b815260040161043a906136f0565b60003411610e7f5760405162461bcd60e51b81526020600482015260166024820152757a61702f7a61702d616d6f756e742d69732d7a65726f60501b604482015260640161043a565b6000856001600160a01b031663107c279f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ebf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee39190613444565b9050806001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f2057600080fd5b505af1158015610f34573d6000803e3d6000fd5b50610f50935050506001600160a01b0383169050303334612c5c565b60405163151d3aa560e31b8152600060048201819052906001600160a01b0388169063a8e9d52890602401602060405180830381865afa158015610f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbc9190613444565b60405163151d3aa560e31b8152600160048201529091506000906001600160a01b0389169063a8e9d52890602401602060405180830381865afa158015611007573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102b9190613444565b9050816001600160a01b0316836001600160a01b0316148061105e5750806001600160a01b0316836001600160a01b0316145b61107a5760405162461bcd60e51b815260040161043a9061371b565b6000826001600160a01b0316846001600160a01b03161461109c57600061109f565b60015b905060006110ae8a3484610a72565b91505081156110ca576110c58a8585848d34612155565b6110d8565b6110d88a8585848d34612214565b6110e58a85858c8c612287565b9a9950505050505050505050565b60405163dfcb53cd60e01b81526001600160a01b03808816600483015260009188917f0000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae9169063dfcb53cd90602401602060405180830381865afa15801561115e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118291906136d3565b61119e5760405162461bcd60e51b815260040161043a906136f0565b6000886001600160a01b031663107c279f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112029190613444565b60405163151d3aa560e31b81526000600482018190529192506001600160a01b038b169063a8e9d52890602401602060405180830381865afa15801561124c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112709190613444565b60405163151d3aa560e31b8152600160048201529091506000906001600160a01b038c169063a8e9d52890602401602060405180830381865afa1580156112bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112df9190613444565b9050816001600160a01b0316876001600160a01b031614806113125750806001600160a01b0316876001600160a01b0316145b61132e5760405162461bcd60e51b815260040161043a9061371b565b6113436001600160a01b038c1633308d612c5c565b604051630441a3e760e41b8152600481018b9052602481018a90526001600160a01b038c169063441a3e70906044016000604051808303816000875af1158015611391573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113b9919081019061376b565b50816001600160a01b0316876001600160a01b0316036116dd576040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561141a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143e9190613752565b90506114556001600160a01b0384168d6000612ccd565b61146b6001600160a01b0384168d600019612ccd565b8b6001600160a01b0316630b2583c884848460008f6040518663ffffffff1660e01b81526004016114a09594939291906137a0565b6020604051808303816000875af11580156114bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e39190613752565b506040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561152b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154f9190613752565b9050898110156115a15760405162461bcd60e51b815260206004820152601e60248201527f21556e7a61702f6e6f742d656e6f7567682d746f6b656e2d616d6f756e740000604482015260640161043a565b846001600160a01b0316836001600160a01b03161480156115bf5750875b156116bd57604051632e1a7d4d60e01b8152600481018290526001600160a01b03861690632e1a7d4d906024015b600060405180830381600087803b15801561160757600080fd5b505af115801561161b573d6000803e3d6000fd5b50506040516000925033915083908381818185875af1925050503d8060008114611661576040519150601f19603f3d011682016040523d82523d6000602084013e611666565b606091505b50509050806116b75760405162461bcd60e51b815260206004820152601760248201527f7a61702f756e7a61702d746f2d6574682d6661696c6564000000000000000000604482015260640161043a565b506116d1565b6116d16001600160a01b0384163383612de7565b955061190f9350505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611724573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117489190613752565b905061175f6001600160a01b0383168d6000612ccd565b6117756001600160a01b0383168d600019612ccd565b8b6001600160a01b0316630b2583c883858460008f6040518663ffffffff1660e01b81526004016117aa9594939291906137a0565b6020604051808303816000875af11580156117c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ed9190613752565b506040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015611835573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118599190613752565b9050898110156118ab5760405162461bcd60e51b815260206004820152601e60248201527f21556e7a61702f6e6f742d656e6f7567682d746f6b656e2d616d6f756e740000604482015260640161043a565b846001600160a01b0316846001600160a01b03161480156118c95750875b156118fb57604051632e1a7d4d60e01b8152600481018390526001600160a01b03861690632e1a7d4d906024016115ed565b6116d16001600160a01b0385163383612de7565b509695505050505050565b60008061076a84846001610a72565b60008060606000866001600160a01b031663a8e9d52860016040518263ffffffff1660e01b815260040161195f91815260200190565b602060405180830381865afa15801561197c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a09190613444565b90506012866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a069190613461565b60ff161115611a275760405162461bcd60e51b815260040161043a90613484565b6040516370a0823160e01b81526001600160a01b038881166004830152600091611b5391611aaa9164e8d4a51000918616906370a08231906024015b602060405180830381865afa158015611a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa49190613752565b90611dcb565b610520896001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0f9190613461565b611b1a9060246135c7565b611b2590600a6136c4565b6040516370a0823160e01b81526001600160a01b038d811660048301528c16906370a0823190602401611a63565b90506000611b7364e8d4a510008860200151611dcb90919063ffffffff16565b90506000611bfa896001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdc9190613461565b611be79060126135c7565b611bf290600a6136c4565b895190611dcb565b90506000611c1e611c178561052085670de0b6b3a7640000611dcb565b8490612e17565b9050611c2981612e23565b90506000808c6001600160a01b0316636f2ef95b846040518263ffffffff1660e01b8152600401611c5c91815260200190565b600060405180830381865afa158015611c79573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ca19190810190613554565b9150915060008b6040015182600081518110611cbf57611cbf61359b565b602002602001015111611cd3576000611d04565b611d048c6000015183600081518110611cee57611cee61359b565b6020026020010151612e3b90919063ffffffff16565b905060008c6060015183600181518110611d2057611d2061359b565b602002602001015111611d34576000611d4f565b611d4f8d6020015184600181518110611cee57611cee61359b565b90506000821180611d605750600081115b15611db3578c51611d7a90611d759084612e3b565b612e23565b8d5260208d0151611d8f90611d759083612e3b565b60208e0152611d9f8f8f8f611929565b9b509b509b50505050505050505050611dc2565b50929950909750955050505050505b93509350939050565b6000611dd782846137d1565b9392505050565b6000611dd782846137e8565b604051638334278d60e01b8152600060048201819052908190859082906001600160a01b03831690638334278d90602401602060405180830381865afa158015611e38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5c9190613444565b604051638334278d60e01b8152600160048201529091506000906001600160a01b03841690638334278d90602401602060405180830381865afa158015611ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecb9190613444565b6040516370a0823160e01b81526001600160a01b038a811660048301529192506000918416906370a0823190602401602060405180830381865afa158015611f17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3b9190613752565b6040516370a0823160e01b81526001600160a01b038b811660048301529192506000918416906370a0823190602401602060405180830381865afa158015611f87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fab9190613752565b604051633cae77f760e01b81526001600160a01b038681166004830152919250600091871690633cae77f790602401602060405180830381865afa158015611ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201b9190613444565b604051633cae77f760e01b81526001600160a01b038681166004830152919250600091881690633cae77f790602401602060405180830381865afa158015612067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061208b9190613444565b905061209881868c612e47565b6120a383888e612e47565b6120ad919061380a565b985060006120bc828786612e47565b6120c7848988612e47565b6120d1919061380a565b9050612143816105208a6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612118573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213c9190613752565b8d90611dcb565b98505050505050505050935093915050565b61216a6001600160a01b038616333084612c5c565b61217f6001600160a01b038616876000612ccd565b6121936001600160a01b0386168785612ccd565b604051630164b07960e31b81526001600160a01b03871690630b2583c8906121c89088908890889060009089906004016137a0565b6020604051808303816000875af11580156121e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220b9190613752565b50505050505050565b6122296001600160a01b038516333084612c5c565b61223e6001600160a01b038516876000612ccd565b6122526001600160a01b0385168785612ccd565b604051630164b07960e31b81526001600160a01b03871690630b2583c8906121c89087908990889060009089906004016137a0565b6040805160808101918290526370a0823160e01b909152306084820152600090819061245d9088908890806001600160a01b0383166370a0823160a48301602060405180830381865afa1580156122e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123069190613752565b81526040516370a0823160e01b81523060048201526020909101906001600160a01b038b16906370a0823190602401602060405180830381865afa158015612352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123769190613752565b81526040516370a0823160e01b81523060048201526020909101906001600160a01b038c16906370a0823190602401602060405180830381865afa1580156123c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e69190613752565b81526040516370a0823160e01b81523060048201526020909101906001600160a01b038b16906370a0823190602401602060405180830381865afa158015612432573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124569190613752565b9052611929565b5090915061247890506001600160a01b038716886000612ccd565b6040516370a0823160e01b81523060048201526124f79088906001600160a01b038916906370a0823190602401602060405180830381865afa1580156124c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e69190613752565b6001600160a01b0389169190612ccd565b61250c6001600160a01b038616886000612ccd565b6040516370a0823160e01b815230600482015261258b9088906001600160a01b038816906370a0823190602401602060405180830381865afa158015612556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257a9190613752565b6001600160a01b0388169190612ccd565b604051632c3913c560e11b8152600481018290526000602482018190526044820181905260001960648301819052608483015260a48201869052906001600160a01b03891690635872278a9060c4016000604051808303816000875af11580156125f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126219190810190613554565b509050838110156126745760405162461bcd60e51b815260206004820152601960248201527f215a61702f6e6f742d656e6f7567682d6c702d616d6f756e7400000000000000604482015260640161043a565b6040516370a0823160e01b81523060048201526126f39033906001600160a01b038b16906370a0823190602401602060405180830381865afa1580156126be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e29190613752565b6001600160a01b038b169190612de7565b6040516370a0823160e01b81523060048201526127729033906001600160a01b038a16906370a0823190602401602060405180830381865afa15801561273d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127619190613752565b6001600160a01b038a169190612de7565b6040516370a0823160e01b81523060048201526127f19033906001600160a01b038916906370a0823190602401602060405180830381865afa1580156127bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e09190613752565b6001600160a01b0389169190612de7565b979650505050505050565b6000828161280b826002611dde565b905060008080805b6020811015612a0857875160208901516040808b015190516341c7351160e11b81526001600160a01b03928316600482015290821660248201526044810189905291169063838e6a2290606401602060405180830381865afa15801561287d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a19190613752565b935060128860a0015160ff1611156128cb5760405162461bcd60e51b815260040161043a90613484565b61290e6128dd8564e8d4a51000611dcb565b6105208a60a0015160ff1660246128f4919061381d565b6128ff90600a613830565b60608c0151611aa4908b612e3b565b915061296461293364e8d4a51000611aa4878c60c00151612e3b90919063ffffffff16565b6105208a60a0015160ff16602461294a919061381d565b61295590600a613830565b60808c0151611aa4908b612e17565b925061297783662386f26fc10000611dde565b61298883662386f26fc10000611dde565b0361299b5785965050505050505061076f565b828211156129b4576129ad8686612e17565b95506129c9565b828210156129c9576129c68686612e3b565b95505b87606001518611156129e957600188606001516129e6919061381d565b95505b6129f4856002611dde565b945080612a008161383c565b915050612813565b5060405162461bcd60e51b81526020600482015260126024820152715a61702f6e6f742d636f6e76657267696e6760701b604482015260640161043a565b60008281612a55826002611dde565b905060008080805b6020811015612a085787516040808a015160208b015191516341c7351160e11b81526001600160a01b0391821660048201529181166024830152604482018990529091169063838e6a2290606401602060405180830381865afa158015612ac8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aec9190613752565b935060128860a0015160ff161115612b165760405162461bcd60e51b815260040161043a90613484565b612b62612b3964e8d4a51000611aa4898c60600151612e3b90919063ffffffff16565b6105208a60a0015160ff166024612b50919061381d565b612b5b90600a613830565b8790611dcb565b9150612bb8612b8764e8d4a51000611aa4898c60c00151612e1790919063ffffffff16565b6105208a60a0015160ff166024612b9e919061381d565b612ba990600a613830565b60808c0151611aa49089612e3b565b9250612bcb83662386f26fc10000611dde565b612bdc83662386f26fc10000611dde565b03612bef5785965050505050505061076f565b82821115612c0857612c018686612e3b565b9550612c1d565b82821015612c1d57612c1a8686612e17565b95505b8760600151861115612c3d5760018860600151612c3a919061381d565b95505b612c48856002611dde565b945080612c548161383c565b915050612a5d565b6040516001600160a01b0380851660248301528316604482015260648101829052612cc79085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613017565b50505050565b801580612d475750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612d21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d459190613752565b155b612db25760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161043a565b6040516001600160a01b038316602482015260448101829052612de290849063095ea7b360e01b90606401612c90565b505050565b6040516001600160a01b038316602482015260448101829052612de290849063a9059cbb60e01b90606401612c90565b6000611dd7828461380a565b600061076f6305f5e100610520846305f5e0ff611dcb565b6000611dd7828461381d565b600080846001600160a01b0316637dc0d1d06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eac9190613444565b90506000816001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015612eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f129190613874565b50505091505061300d856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f7d9190613461565b612f8890600a6136c4565b610520846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fed9190613461565b612ff89060126135c7565b61300390600a6136c4565b611aa48886611dcb565b9695505050505050565b600061306c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130e99092919063ffffffff16565b805190915015612de2578080602001905181019061308a91906136d3565b612de25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161043a565b60606130f88484600085613100565b949350505050565b6060824710156131615760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161043a565b600080866001600160a01b0316858760405161317d91906138e8565b60006040518083038185875af1925050503d80600081146131ba576040519150601f19603f3d011682016040523d82523d6000602084013e6131bf565b606091505b50915091506127f1878383876060831561323a578251600003613233576001600160a01b0385163b6132335760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161043a565b50816130f8565b6130f8838381511561324f5781518083602001fd5b8060405162461bcd60e51b815260040161043a9190613904565b6001600160a01b038116811461327e57600080fd5b50565b6000806040838503121561329457600080fd5b823561329f81613269565b946020939093013593505050565b6000606082018583526020858185015260606040850152818551808452608086019150828701935060005b818110156132f4578451835293830193918301916001016132d8565b509098975050505050505050565b600080600080600060a0868803121561331a57600080fd5b853561332581613269565b9450602086013593506040860135925060608601359150608086013561334a81613269565b809150509295509295909350565b801515811461327e57600080fd5b60008060006060848603121561337b57600080fd5b833561338681613269565b925060208401359150604084013561339d81613358565b809150509250925092565b6000806000606084860312156133bd57600080fd5b83356133c881613269565b95602085013595506040909401359392505050565b60008060008060008060c087890312156133f657600080fd5b863561340181613269565b9550602087013594506040870135935060608701359250608087013561342681613269565b915060a087013561343681613358565b809150509295509295509295565b60006020828403121561345657600080fd5b8151611dd781613269565b60006020828403121561347357600080fd5b815160ff81168114611dd757600080fd5b60208082526010908201526f7a61702f6269672d646563696d616c7360801b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126134d557600080fd5b8151602067ffffffffffffffff808311156134f2576134f26134ae565b8260051b604051601f19603f83011681018181108482111715613517576135176134ae565b60405293845285810183019383810192508785111561353557600080fd5b83870191505b848210156127f15781518352918301919083019061353b565b6000806040838503121561356757600080fd5b82519150602083015167ffffffffffffffff81111561358557600080fd5b613591858286016134c4565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111561076f5761076f6135b1565b600181815b8085111561361b578160001904821115613601576136016135b1565b8085161561360e57918102915b93841c93908002906135e5565b509250929050565b6000826136325750600161076f565b8161363f5750600061076f565b8160018114613655576002811461365f5761367b565b600191505061076f565b60ff841115613670576136706135b1565b50506001821b61076f565b5060208310610133831016604e8410600b841016171561369e575081810a61076f565b6136a883836135e0565b80600019048211156136bc576136bc6135b1565b029392505050565b6000611dd760ff841683613623565b6000602082840312156136e557600080fd5b8151611dd781613358565b6020808252601190820152707a61702f696e76616c69642d637572766560781b604082015260600190565b60208082526017908201527f7a61702f746f6b656e2d6e6f742d737570706f72746564000000000000000000604082015260600190565b60006020828403121561376457600080fd5b5051919050565b60006020828403121561377d57600080fd5b815167ffffffffffffffff81111561379457600080fd5b6130f8848285016134c4565b6001600160a01b03958616815293909416602084015260408301919091526060820152608081019190915260a00190565b808202811582820484141761076f5761076f6135b1565b60008261380557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561076f5761076f6135b1565b8181038181111561076f5761076f6135b1565b6000611dd78383613623565b60006001820161384e5761384e6135b1565b5060010190565b805169ffffffffffffffffffff8116811461386f57600080fd5b919050565b600080600080600060a0868803121561388c57600080fd5b61389586613855565b94506020860151935060408601519250606086015191506138b860808701613855565b90509295509295909350565b60005b838110156138df5781810151838201526020016138c7565b50506000910152565b600082516138fa8184602087016138c4565b9190910192915050565b60208152600082518060208401526139238160408501602087016138c4565b601f01601f1916919091016040019291505056fea26469706673582212203fd5cebfb33afc7e4ead0f1ce7eef7c7660fa2b32f65cb1ef2b63b45d14f669764736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae9
-----Decoded View---------------
Arg [0] : _factory (address): 0x1dD11E6607D8C7aAab3d61ae1d8Da7B82aCa1ae9
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001dd11e6607d8c7aaab3d61ae1d8da7b82aca1ae9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.