smart-contract/contracts/ProxyLogics/MakerContract.sol
2019-03-29 03:56:52 +05:30

288 lines
10 KiB
Solidity

pragma solidity ^0.4.23;
/// math.sol -- mixin for inline numerical wizardry
// 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.4.13;
contract DSMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x);
}
function sub(uint x, uint y) internal pure returns (uint z) {
require((z = x - y) <= x);
}
function mul(uint x, uint y) internal pure returns (uint z) {
require(y == 0 || (z = x * y) / y == x);
}
function min(uint x, uint y) internal pure returns (uint z) {
return x <= y ? x : y;
}
function max(uint x, uint y) internal pure returns (uint z) {
return x >= y ? x : y;
}
function imin(int x, int y) internal pure returns (int z) {
return x <= y ? x : y;
}
function imax(int x, int y) internal pure returns (int z) {
return x >= y ? x : y;
}
uint constant WAD = 10 ** 18;
uint constant RAY = 10 ** 27;
function wmul(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, y), WAD / 2) / WAD;
}
function rmul(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, y), RAY / 2) / RAY;
}
function wdiv(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, WAD), y / 2) / y;
}
function rdiv(uint x, uint y) internal pure returns (uint z) {
z = add(mul(x, RAY), y / 2) / y;
}
// This famous algorithm is called "exponentiation by squaring"
// and calculates x^n with x as fixed-point and n as regular unsigned.
//
// It's O(log n), instead of O(n) for naive repeated multiplication.
//
// These facts are why it works:
//
// If n is even, then x^n = (x^2)^(n/2).
// If n is odd, then x^n = x * x^(n-1),
// and applying the equation for even x gives
// x^n = x * (x^2)^((n-1) / 2).
//
// Also, EVM division is flooring and
// floor[(n-1) / 2] = floor[n / 2].
//
function rpow(uint x, uint n) internal pure returns (uint z) {
z = n % 2 != 0 ? x : RAY;
for (n /= 2; n != 0; n /= 2) {
x = rmul(x, x);
if (n % 2 != 0) {
z = rmul(z, x);
}
}
}
}
contract TubInterface {
function open() public returns (bytes32);
function join(uint) public;
function exit(uint) public;
function lock(bytes32, uint) public;
function free(bytes32, uint) public;
function draw(bytes32, uint) public;
function wipe(bytes32, uint) public;
function give(bytes32, address) public;
function shut(bytes32) public;
function cups(bytes32) public view returns (address, uint, uint, uint);
function gem() public view returns (TokenInterface);
function gov() public view returns (TokenInterface);
function skr() public view returns (TokenInterface);
function sai() public view returns (TokenInterface);
function mat() public view returns (uint);
function ink(bytes32) public view returns (uint);
function tab(bytes32) public view returns (uint);
function rap(bytes32) public view returns (uint);
function per() public view returns (uint);
function pep() public view returns (PepInterface);
}
contract TokenInterface {
function allowance(address, address) public view returns (uint);
function balanceOf(address) public view returns (uint);
function approve(address, uint) public;
function transfer(address, uint) public returns (bool);
function transferFrom(address, address, uint) public returns (bool);
function deposit() public payable;
function withdraw(uint) public;
}
contract PepInterface {
function peek() public returns (bytes32, bool);
}
contract OtcInterface {
function getPayAmount(address, address, uint) public view returns (uint);
function buyAllAmount(address, uint, address pay_gem, uint) public returns (uint);
}
contract SaiProxy is DSMath {
function open(address tub_) public returns (bytes32) {
return TubInterface(tub_).open();
}
function give(address tub_, bytes32 cup, address lad) public {
TubInterface(tub_).give(cup, lad);
}
function lock(address tub_, bytes32 cup) public payable {
if (msg.value > 0) {
TubInterface tub = TubInterface(tub_);
(address lad,,,) = tub.cups(cup);
require(lad == address(this), "cup-not-owned");
tub.gem().deposit.value(msg.value)();
uint ink = rdiv(msg.value, tub.per());
ink = rmul(ink, tub.per()) <= msg.value ? ink : ink - 1;
if (tub.gem().allowance(this, tub) != uint(-1)) {
tub.gem().approve(tub, uint(-1));
}
tub.join(ink);
if (tub.skr().allowance(this, tub) != uint(-1)) {
tub.skr().approve(tub, uint(-1));
}
tub.lock(cup, ink);
}
}
function draw(address tub_, bytes32 cup, uint wad) public {
if (wad > 0) {
TubInterface tub = TubInterface(tub_);
tub.draw(cup, wad);
tub.sai().transfer(msg.sender, wad);
}
}
function handleGovFee(TubInterface tub, uint saiDebtFee, address otc_) internal {
bytes32 val;
bool ok;
(val, ok) = tub.pep().peek();
if (ok && val != 0) {
uint govAmt = wdiv(saiDebtFee, uint(val));
if (otc_ != address(0)) {
uint saiGovAmt = OtcInterface(otc_).getPayAmount(tub.sai(), tub.gov(), govAmt);
if (tub.sai().allowance(this, otc_) != uint(-1)) {
tub.sai().approve(otc_, uint(-1));
}
tub.sai().transferFrom(msg.sender, this, saiGovAmt);
OtcInterface(otc_).buyAllAmount(tub.gov(), govAmt, tub.sai(), saiGovAmt);
} else {
tub.gov().transferFrom(msg.sender, this, govAmt);
}
}
}
function wipe(address tub_, bytes32 cup, uint wad, address otc_) public {
if (wad > 0) {
TubInterface tub = TubInterface(tub_);
tub.sai().transferFrom(msg.sender, this, wad);
handleGovFee(tub, rmul(wad, rdiv(tub.rap(cup), tub.tab(cup))), otc_);
if (tub.sai().allowance(this, tub) != uint(-1)) {
tub.sai().approve(tub, uint(-1));
}
if (tub.gov().allowance(this, tub) != uint(-1)) {
tub.gov().approve(tub, uint(-1));
}
tub.wipe(cup, wad);
}
}
function wipe(address tub_, bytes32 cup, uint wad) public {
wipe(tub_, cup, wad, address(0));
}
function free(address tub_, bytes32 cup, uint jam) public {
if (jam > 0) {
TubInterface tub = TubInterface(tub_);
uint ink = rdiv(jam, tub.per());
ink = rmul(ink, tub.per()) <= jam ? ink : ink - 1;
tub.free(cup, ink);
if (tub.skr().allowance(this, tub) != uint(-1)) {
tub.skr().approve(tub, uint(-1));
}
tub.exit(ink);
uint freeJam = tub.gem().balanceOf(this); // Withdraw possible previous stuck WETH as well
tub.gem().withdraw(freeJam);
address(msg.sender).transfer(freeJam);
}
}
function lockAndDraw(address tub_, bytes32 cup, uint wad) public payable {
lock(tub_, cup);
draw(tub_, cup, wad);
}
function lockAndDraw(address tub_, uint wad) public payable returns (bytes32 cup) {
cup = open(tub_);
lockAndDraw(tub_, cup, wad);
}
function wipeAndFree(address tub_, bytes32 cup, uint jam, uint wad) public payable {
wipe(tub_, cup, wad);
free(tub_, cup, jam);
}
function wipeAndFree(address tub_, bytes32 cup, uint jam, uint wad, address otc_) public payable {
wipe(tub_, cup, wad, otc_);
free(tub_, cup, jam);
}
function shut(address tub_, bytes32 cup) public {
TubInterface tub = TubInterface(tub_);
wipeAndFree(tub_, cup, rmul(tub.ink(cup), tub.per()), tub.tab(cup));
tub.shut(cup);
}
function shut(address tub_, bytes32 cup, address otc_) public {
TubInterface tub = TubInterface(tub_);
wipeAndFree(tub_, cup, rmul(tub.ink(cup), tub.per()), tub.tab(cup), otc_);
tub.shut(cup);
}
}
contract ProxyRegistryInterface {
function build(address) public returns (address);
}
contract SaiProxyCreateAndExecute is SaiProxy {
// Create a DSProxy instance and open a cup
function createAndOpen(address registry_, address tub_) public returns (address proxy, bytes32 cup) {
proxy = ProxyRegistryInterface(registry_).build(msg.sender);
cup = open(tub_);
TubInterface(tub_).give(cup, proxy);
}
// Create a DSProxy instance, open a cup, and lock collateral
function createOpenAndLock(address registry_, address tub_) public payable returns (address proxy, bytes32 cup) {
proxy = ProxyRegistryInterface(registry_).build(msg.sender);
cup = open(tub_);
lock(tub_, cup);
TubInterface(tub_).give(cup, proxy);
}
// Create a DSProxy instance, open a cup, lock collateral, and draw DAI
function createOpenLockAndDraw(address registry_, address tub_, uint wad) public payable returns (address proxy, bytes32 cup) {
proxy = ProxyRegistryInterface(registry_).build(msg.sender);
cup = open(tub_);
lockAndDraw(tub_, cup, wad);
TubInterface(tub_).give(cup, proxy);
}
}