mirror of
https://github.com/Instadapp/smart-contract.git
synced 2024-07-29 22:08:07 +00:00
121 lines
3.5 KiB
Solidity
121 lines
3.5 KiB
Solidity
|
pragma solidity ^0.5.0;
|
||
|
|
||
|
|
||
|
interface TubLike {
|
||
|
function wipe(bytes32, uint) external;
|
||
|
function gov() external view returns (TokenLike);
|
||
|
function sai() external view returns (TokenLike);
|
||
|
function tab(bytes32) external returns (uint);
|
||
|
function rap(bytes32) external returns (uint);
|
||
|
function pep() external view returns (PepLike);
|
||
|
}
|
||
|
|
||
|
interface TokenLike {
|
||
|
function allowance(address, address) external view returns (uint);
|
||
|
function balanceOf(address) external view returns (uint);
|
||
|
function approve(address, uint) external;
|
||
|
function transfer(address, uint) external returns (bool);
|
||
|
function transferFrom(address, address, uint) external returns (bool);
|
||
|
}
|
||
|
|
||
|
interface PepLike {
|
||
|
function peek() external returns (bytes32, bool);
|
||
|
}
|
||
|
|
||
|
interface UniswapExchangeLike {
|
||
|
function getEthToTokenOutputPrice(uint256 tokensBought) external view returns (uint256 ethSold);
|
||
|
function getTokenToEthOutputPrice(uint256 ethBought) external view returns (uint256 tokensSold);
|
||
|
function tokenToTokenSwapOutput(
|
||
|
uint256 tokensBought,
|
||
|
uint256 maxTokensSold,
|
||
|
uint256 maxEthSold,
|
||
|
uint256 deadline,
|
||
|
address tokenAddr
|
||
|
) external returns (uint256 tokensSold);
|
||
|
}
|
||
|
|
||
|
|
||
|
contract DSMath {
|
||
|
|
||
|
function add(uint x, uint y) internal pure returns (uint z) {
|
||
|
require((z = x + y) >= x, "math-not-safe");
|
||
|
}
|
||
|
|
||
|
function mul(uint x, uint y) internal pure returns (uint z) {
|
||
|
require(y == 0 || (z = x * y) / y == x, "math-not-safe");
|
||
|
}
|
||
|
|
||
|
uint constant WAD = 10 ** 18;
|
||
|
uint constant RAY = 10 ** 27;
|
||
|
|
||
|
function rmul(uint x, uint y) internal pure returns (uint z) {
|
||
|
z = add(mul(x, y), RAY / 2) / RAY;
|
||
|
}
|
||
|
|
||
|
function rdiv(uint x, uint y) internal pure returns (uint z) {
|
||
|
z = add(mul(x, RAY), y / 2) / y;
|
||
|
}
|
||
|
|
||
|
function wdiv(uint x, uint y) internal pure returns (uint z) {
|
||
|
z = add(mul(x, WAD), y / 2) / y;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
contract WipeProxy is DSMath {
|
||
|
|
||
|
function wipeWithDai(
|
||
|
address _tub,
|
||
|
address _daiEx,
|
||
|
address _mkrEx,
|
||
|
uint cupid,
|
||
|
uint wad
|
||
|
) public
|
||
|
{
|
||
|
require(wad > 0, "no-wipe-no-dai");
|
||
|
|
||
|
TubLike tub = TubLike(_tub);
|
||
|
UniswapExchangeLike daiEx = UniswapExchangeLike(_daiEx);
|
||
|
UniswapExchangeLike mkrEx = UniswapExchangeLike(_mkrEx);
|
||
|
TokenLike dai = tub.sai();
|
||
|
TokenLike mkr = tub.gov();
|
||
|
PepLike pep = tub.pep();
|
||
|
|
||
|
bytes32 cup = bytes32(cupid);
|
||
|
|
||
|
setAllowance(dai, _tub);
|
||
|
setAllowance(mkr, _tub);
|
||
|
setAllowance(dai, _daiEx);
|
||
|
|
||
|
(bytes32 val, bool ok) = pep.peek();
|
||
|
|
||
|
// MKR required for wipe = Stability fees accrued in Dai / MKRUSD value
|
||
|
uint mkrFee = wdiv(rmul(wad, rdiv(tub.rap(cup), tub.tab(cup))), uint(val));
|
||
|
|
||
|
uint ethAmt = mkrEx.getEthToTokenOutputPrice(mkrFee);
|
||
|
uint daiAmt = daiEx.getTokenToEthOutputPrice(ethAmt);
|
||
|
|
||
|
daiAmt = add(wad, daiAmt);
|
||
|
require(dai.transferFrom(msg.sender, address(this), daiAmt), "not-approved-yet");
|
||
|
|
||
|
if (ok && val != 0) {
|
||
|
daiEx.tokenToTokenSwapOutput(
|
||
|
mkrFee,
|
||
|
daiAmt,
|
||
|
uint(999000000000000000000),
|
||
|
uint(1899063809), // 6th March 2030 GMT // no logic
|
||
|
address(mkr)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
tub.wipe(cup, wad);
|
||
|
}
|
||
|
|
||
|
function setAllowance(TokenLike token_, address spender_) private {
|
||
|
if (token_.allowance(address(this), spender_) != uint(-1)) {
|
||
|
token_.approve(spender_, uint(-1));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|