230 lines
6.6 KiB
Solidity
230 lines
6.6 KiB
Solidity
/*
|
|
Copyright 2021 DODO ZOO.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
pragma solidity 0.6.9;
|
|
|
|
import {IDODOApproveProxy} from "../DODOApproveProxy.sol";
|
|
import {IDODOV2} from "./../intf/IDODOV2.sol";
|
|
import {IERC20} from "../../intf/IERC20.sol";
|
|
import {SafeERC20} from "../../lib/SafeERC20.sol";
|
|
import {IWETH} from "../../intf/IWETH.sol";
|
|
import {SafeMath} from "../../lib/SafeMath.sol";
|
|
import {SafeERC20} from "../../lib/SafeERC20.sol";
|
|
import {ReentrancyGuard} from "../../lib/ReentrancyGuard.sol";
|
|
|
|
// interface IDPPOracle {
|
|
// function reset(
|
|
// address assetTo,
|
|
// uint256 newLpFeeRate,
|
|
// uint256 newK,
|
|
// uint256 baseOutAmount,
|
|
// uint256 quoteOutAmount,
|
|
// uint256 minBaseReserve,
|
|
// uint256 minQuoteReserve
|
|
// ) external returns (bool);
|
|
// }
|
|
|
|
|
|
/**
|
|
* @title DODODppProxy
|
|
* @author DODO Breeder
|
|
*
|
|
* @notice DODO Private Pool Proxy
|
|
*/
|
|
contract DODODppProxy is ReentrancyGuard {
|
|
using SafeMath for uint256;
|
|
using SafeERC20 for IERC20;
|
|
|
|
// ============ Storage ============
|
|
|
|
address constant _ETH_ADDRESS_ = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
|
|
address public immutable _WETH_;
|
|
address public immutable _DODO_APPROVE_PROXY_;
|
|
address public immutable _DPP_FACTORY_;
|
|
|
|
// ============ Modifiers ============
|
|
|
|
modifier judgeExpired(uint256 deadLine) {
|
|
require(deadLine >= block.timestamp, "DPPProxy: EXPIRED");
|
|
_;
|
|
}
|
|
|
|
fallback() external payable {}
|
|
|
|
receive() external payable {}
|
|
|
|
constructor(
|
|
address payable weth,
|
|
address dodoApproveProxy,
|
|
address dppFactory
|
|
) public {
|
|
_WETH_ = weth;
|
|
_DODO_APPROVE_PROXY_ = dodoApproveProxy;
|
|
_DPP_FACTORY_ = dppFactory;
|
|
}
|
|
|
|
|
|
function createDODOPrivatePool(
|
|
address baseToken,
|
|
address quoteToken,
|
|
uint256 baseInAmount,
|
|
uint256 quoteInAmount,
|
|
uint256 lpFeeRate,
|
|
uint256 i,
|
|
uint256 k,
|
|
bool isOpenTwap,
|
|
uint256 deadLine
|
|
)
|
|
external
|
|
payable
|
|
preventReentrant
|
|
judgeExpired(deadLine)
|
|
returns (address newPrivatePool)
|
|
{
|
|
newPrivatePool = IDODOV2(_DPP_FACTORY_).createDODOPrivatePool();
|
|
|
|
address _baseToken = baseToken;
|
|
address _quoteToken = quoteToken;
|
|
_deposit(msg.sender, newPrivatePool, _baseToken, baseInAmount, _baseToken == _ETH_ADDRESS_);
|
|
_deposit(
|
|
msg.sender,
|
|
newPrivatePool,
|
|
_quoteToken,
|
|
quoteInAmount,
|
|
_quoteToken == _ETH_ADDRESS_
|
|
);
|
|
|
|
if (_baseToken == _ETH_ADDRESS_) _baseToken = _WETH_;
|
|
if (_quoteToken == _ETH_ADDRESS_) _quoteToken = _WETH_;
|
|
|
|
IDODOV2(_DPP_FACTORY_).initDODOPrivatePool(
|
|
newPrivatePool,
|
|
msg.sender,
|
|
_baseToken,
|
|
_quoteToken,
|
|
lpFeeRate,
|
|
k,
|
|
i,
|
|
isOpenTwap
|
|
);
|
|
}
|
|
|
|
function resetDODOPrivatePool(
|
|
address dppAddress,
|
|
uint256[] memory paramList, //0 - newLpFeeRate, 1 - newI, 2 - newK
|
|
uint256[] memory amountList, //0 - baseInAmount, 1 - quoteInAmount, 2 - baseOutAmount, 3- quoteOutAmount
|
|
uint8 flag, // 0 - ERC20, 1 - baseInETH, 2 - quoteInETH, 3 - baseOutETH, 4 - quoteOutETH
|
|
uint256 minBaseReserve,
|
|
uint256 minQuoteReserve,
|
|
uint256 deadLine
|
|
) external payable preventReentrant judgeExpired(deadLine) {
|
|
_deposit(
|
|
msg.sender,
|
|
dppAddress,
|
|
IDODOV2(dppAddress)._BASE_TOKEN_(),
|
|
amountList[0],
|
|
flag == 1
|
|
);
|
|
_deposit(
|
|
msg.sender,
|
|
dppAddress,
|
|
IDODOV2(dppAddress)._QUOTE_TOKEN_(),
|
|
amountList[1],
|
|
flag == 2
|
|
);
|
|
|
|
require(IDODOV2(IDODOV2(dppAddress)._OWNER_()).reset(
|
|
msg.sender,
|
|
paramList[0],
|
|
paramList[1],
|
|
paramList[2],
|
|
amountList[2],
|
|
amountList[3],
|
|
minBaseReserve,
|
|
minQuoteReserve
|
|
), "Reset Failed");
|
|
|
|
_withdraw(msg.sender, IDODOV2(dppAddress)._BASE_TOKEN_(), amountList[2], flag == 3);
|
|
_withdraw(msg.sender, IDODOV2(dppAddress)._QUOTE_TOKEN_(), amountList[3], flag == 4);
|
|
}
|
|
|
|
|
|
|
|
// DPPOracle
|
|
// function resetDODOPrivatePool(
|
|
// address dppAddress,
|
|
// uint256[] memory paramList, //0 - newLpFeeRate, 1 - newK
|
|
// uint256[] memory amountList, //0 - baseInAmount, 1 - quoteInAmount, 2 - baseOutAmount, 3- quoteOutAmount
|
|
// uint8 flag, //0 - ERC20, 1 - baseInETH, 2 - quoteInETH, 3 - baseOutETH, 4 - quoteOutETH
|
|
// uint256 minBaseReserve,
|
|
// uint256 minQuoteReserve,
|
|
// uint256 deadLine
|
|
// ) external payable preventReentrant judgeExpired(deadLine) {
|
|
// _deposit(
|
|
// msg.sender,
|
|
// dppAddress,
|
|
// IDODOV2(dppAddress)._BASE_TOKEN_(),
|
|
// amountList[0],
|
|
// flag == 1
|
|
// );
|
|
// _deposit(
|
|
// msg.sender,
|
|
// dppAddress,
|
|
// IDODOV2(dppAddress)._QUOTE_TOKEN_(),
|
|
// amountList[1],
|
|
// flag == 2
|
|
// );
|
|
|
|
// require(IDPPOracle(IDODOV2(dppAddress)._OWNER_()).reset(
|
|
// msg.sender,
|
|
// paramList[0],
|
|
// paramList[1],
|
|
// amountList[2],
|
|
// amountList[3],
|
|
// minBaseReserve,
|
|
// minQuoteReserve
|
|
// ), "Reset Failed");
|
|
|
|
// _withdraw(msg.sender, IDODOV2(dppAddress)._BASE_TOKEN_(), amountList[2], flag == 3);
|
|
// _withdraw(msg.sender, IDODOV2(dppAddress)._QUOTE_TOKEN_(), amountList[3], flag == 4);
|
|
// }
|
|
|
|
//====================== internal =======================
|
|
|
|
function _deposit(
|
|
address from,
|
|
address to,
|
|
address token,
|
|
uint256 amount,
|
|
bool isETH
|
|
) internal {
|
|
if (isETH) {
|
|
if (amount > 0) {
|
|
IWETH(_WETH_).deposit{value: amount}();
|
|
if (to != address(this)) SafeERC20.safeTransfer(IERC20(_WETH_), to, amount);
|
|
}
|
|
} else {
|
|
IDODOApproveProxy(_DODO_APPROVE_PROXY_).claimTokens(token, from, to, amount);
|
|
}
|
|
}
|
|
|
|
function _withdraw(
|
|
address payable to,
|
|
address token,
|
|
uint256 amount,
|
|
bool isETH
|
|
) internal {
|
|
if (isETH) {
|
|
if (amount > 0) {
|
|
IWETH(_WETH_).withdraw(amount);
|
|
to.transfer(amount);
|
|
}
|
|
} else {
|
|
if (amount > 0) {
|
|
SafeERC20.safeTransfer(IERC20(token), to, amount);
|
|
}
|
|
}
|
|
}
|
|
} |