forked from moneyearnfinance/KYFISwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKYFIStableAMMV3.1.sol
481 lines (414 loc) · 17.4 KB
/
KYFIStableAMMV3.1.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
pragma solidity ^0.5.16;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address account) external view returns (uint);
function transfer(address recipient, uint amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint amount) external returns (bool);
function transferFrom(address sender, address recipient, uint amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
contract Context {
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
}
contract Ownable is Context {
address private _owner;
constructor () internal {
_owner = _msgSender();
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
}
}
contract ERC20 is Context, IERC20 {
using SafeMath for uint;
mapping (address => uint) private _balances;
mapping (address => mapping (address => uint)) private _allowances;
uint private _totalSupply;
function totalSupply() public view returns (uint) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint) {
return _balances[account];
}
function transfer(address recipient, uint amount) public returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view returns (uint) {
return _allowances[owner][spender];
}
function approve(address spender, uint amount) public returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function _transfer(address sender, address recipient, uint amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function _mint(address account, uint amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
function _burn(address account, uint amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
function _approve(address owner, address spender, uint amount) internal {
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);
}
}
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint8) {
return _decimals;
}
}
contract ReentrancyGuard {
uint private _guardCounter;
constructor () internal {
_guardCounter = 1;
}
modifier nonReentrant() {
_guardCounter += 1;
uint localCounter = _guardCounter;
_;
require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
}
}
library SafeMath {
function add(uint a, uint b) internal pure returns (uint) {
uint c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint a, uint b) internal pure returns (uint) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
require(b <= a, errorMessage);
uint c = a - b;
return c;
}
function mul(uint a, uint b) internal pure returns (uint) {
if (a == 0) {
return 0;
}
uint c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint a, uint b) internal pure returns (uint) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint c = a / b;
return c;
}
}
library Address {
function isContract(address account) internal view returns (bool) {
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != 0x0 && codehash != accountHash);
}
}
library SafeERC20 {
using SafeMath for uint;
using Address for address;
function safeTransfer(IERC20 token, address to, uint value) internal {
callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint value) internal {
callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
function safeApprove(IERC20 token, address spender, uint value) internal {
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 callOptionalReturn(IERC20 token, bytes memory data) private {
require(address(token).isContract(), "SafeERC20: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = address(token).call(data);
require(success, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
interface AaveToken {
function underlyingAssetAddress() external returns (address);
}
interface Oracle {
function getPriceUSD(address reserve) external view returns (uint);
}
interface UniswapRouter {
function setRouter(address _router) external;
function setAMM(address _amm) external;
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityImbalanced(
address tokenA,
address tokenB,
uint amountA,
uint amountB,
address to,
uint deadline
) external returns (uint, uint, uint);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function factory() external view returns (address);
function claim(address, address) external;
function redirectInterestStream(address, address) external;
}
interface IUniswapV2Factory {
function getPair(address tokenA, address tokenB) external view returns (address pair);
}
contract SupplyToken is ERC20, ERC20Detailed, Ownable {
using SafeERC20 for IERC20;
using Address for address;
using SafeMath for uint;
constructor (
string memory name,
string memory symbol,
uint8 decimals
) public ERC20Detailed(name, symbol, decimals) {}
function mint(address account, uint amount) public onlyOwner {
_mint(account, amount);
}
function burn(address account, uint amount) public onlyOwner {
_burn(account, amount);
}
}
contract StableAMM is ERC20, ERC20Detailed, ReentrancyGuard {
using SafeERC20 for IERC20;
using Address for address;
using SafeMath for uint;
address public link = address(0x5f0711c689Ed216f97D91126C112Ad585d1a7aba);
address public vault = address(0xb99a40fcE04cb740EB79fC04976CA15aF69AaaaE);
address public unirouter;
address public governance;
mapping (address => address) public tokens;
// Reward system
mapping (address => uint) public index;
mapping (address => uint) public bal;
mapping (address => mapping (address => uint)) public supplyIndex;
constructor (address router) public ERC20Detailed("AMM USD", "aUSD", 8) {
unirouter = router;
governance = msg.sender;
}
function setRouter(address router) external {
require(msg.sender == governance, "!governance");
unirouter = router;
}
function setLink(address _link) external {
require(msg.sender == governance, "!governance");
link = _link;
}
function setVault(address _vault) external {
require(msg.sender == governance, "!governance");
vault = _vault;
}
function setGovernance(address _governance) external {
require(msg.sender == governance, "!governance");
governance = _governance;
}
function setFactoryRouter(address _router) external {
require(msg.sender == governance, "!governance");
UniswapRouter(unirouter).setRouter(_router);
}
function setRouterAMM(address _amm) external {
require(msg.sender == governance, "!governance");
UniswapRouter(unirouter).setAMM(_amm);
}
function claim(address pair, address token, uint value) external {
require(msg.sender == governance, "!governance");
UniswapRouter(unirouter).claim(pair, token);
IERC20(token).safeTransfer(vault, value);
}
function rewardInterest(address token) public {
address _uni = getUNI(token);
if (_uni != address(0)) {
if (IERC20(_uni).totalSupply() > 0) {
uint256 _bal = IERC20(token).balanceOf(address(this));
if (_bal > 0) {
uint256 _diff = _bal.sub(bal[token]);
if (_diff > 0) {
uint256 _ratio = _diff.mul(ERC20Detailed(_uni).decimals()).div(IERC20(_uni).totalSupply());
if (_ratio > 0) {
index[token] = index[token].add(_ratio);
bal[token] = _bal;
}
}
}
}
uint _supplied = IERC20(_uni).balanceOf(msg.sender);
if (_supplied > 0) {
uint256 _supplyIndex = supplyIndex[token][msg.sender];
supplyIndex[token][msg.sender] = index[token];
uint256 _delta = index[token].sub(_supplyIndex);
if (_delta > 0) {
uint256 _share = _supplied.mul(_delta).div(ERC20Detailed(_uni).decimals());
IERC20(token).safeTransfer(msg.sender, _share);
bal[token] = IERC20(token).balanceOf(address(this));
}
} else {
supplyIndex[token][msg.sender] = index[token];
}
}
}
function getUNI(address _token) public view returns (address) {
address pair = IUniswapV2Factory(UniswapRouter(unirouter).factory()).getPair(_token, address(this));
return tokens[pair];
}
function depositAave(address token, uint amount) external nonReentrant {
rewardInterest(token);
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
address underlying = AaveToken(token).underlyingAssetAddress();
_deposit(token, underlying, amount);
rewardInterest(token);
}
function deposit(address token, uint amount) external nonReentrant {
IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
_deposit(token, token, amount);
}
function _deposit(address token, address underlying, uint amount) internal {
uint value = Oracle(link).getPriceUSD(underlying).mul(amount).div(uint256(10)**ERC20Detailed(token).decimals());
require(value > 0, "!value");
_mint(address(this), value); // Amount of aUSD to mint
IERC20(token).safeApprove(unirouter, 0);
IERC20(token).safeApprove(unirouter, amount);
IERC20(address(this)).safeApprove(unirouter, 0);
IERC20(address(this)).safeApprove(unirouter, value);
(,,uint liquidity) = UniswapRouter(unirouter).addLiquidityImbalanced(
token,
address(this),
amount,
value,
address(this),
now.add(1800)
);
address pair = IUniswapV2Factory(UniswapRouter(unirouter).factory()).getPair(token, address(this));
require(pair != address(0), "!pair");
if (tokens[pair] == address(0)) {
tokens[pair] = address(new SupplyToken(
string(abi.encodePacked(ERC20Detailed(token).symbol(), " ", ERC20Detailed(pair).name())),
string(abi.encodePacked(ERC20Detailed(token).symbol(), ERC20Detailed(pair).symbol())),
ERC20Detailed(pair).decimals()
));
if (token != underlying) {
UniswapRouter(unirouter).redirectInterestStream(pair, token);
}
}
SupplyToken(tokens[pair]).mint(msg.sender, liquidity);
}
function withdrawAave(address token, uint amount) external nonReentrant {
rewardInterest(token);
(uint amountA, uint amountB) = _withdraw(token, amount);
address underlying = AaveToken(token).underlyingAssetAddress();
_return(token, underlying, amountA, amountB);
rewardInterest(token);
}
function withdraw(address token, uint amount) external nonReentrant {
(uint amountA, uint amountB) = _withdraw(token, amount);
_return(token, token, amountA, amountB);
}
function _withdraw(address token, uint amount) internal returns (uint amountA, uint amountB) {
address pair = IUniswapV2Factory(UniswapRouter(unirouter).factory()).getPair(token, address(this));
SupplyToken(tokens[pair]).burn(msg.sender, amount);
IERC20(pair).safeApprove(unirouter, 0);
IERC20(pair).safeApprove(unirouter, amount);
(amountA, amountB) = UniswapRouter(unirouter).removeLiquidity(
token,
address(this),
amount,
0,
0,
address(this),
now.add(1800)
);
}
function _return(address token, address underlying, uint amountA, uint amountB) internal {
uint valueA = Oracle(link).getPriceUSD(underlying).mul(amountA).div(uint256(10)**ERC20Detailed(token).decimals());
require(valueA > 0, "!value");
if (valueA > amountB) {
amountA = amountA.mul(amountB).div(valueA);
valueA = amountB;
}
_burn(address(this), valueA); // Amount of aUSD to burn (value of A leaving the system)
IERC20(token).safeTransfer(msg.sender, amountA);
if (amountB > valueA) {
IERC20(address(this)).transfer(msg.sender, amountB.sub(valueA));
}
}
}