yield-contract/contracts/pools/erc20.sol

180 lines
6.1 KiB
Solidity
Raw Normal View History

2020-08-22 03:07:55 +00:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.8;
pragma experimental ABIEncoderV2;
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
2020-08-25 14:32:59 +00:00
import "@openzeppelin/contracts/token/ERC20/ERC20Pausable.sol";
2020-08-25 15:54:42 +00:00
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
2020-08-22 03:07:55 +00:00
2020-08-28 17:12:59 +00:00
import { DSMath } from "../libs/safeMath.sol";
2020-08-22 03:07:55 +00:00
interface IndexInterface {
function master() external view returns (address);
}
interface RegistryInterface {
function chief(address) external view returns (bool);
2020-08-24 00:40:01 +00:00
function poolLogic(address) external returns (address);
2020-09-06 12:08:29 +00:00
function fee(address) external view returns (uint);
2020-09-06 16:01:27 +00:00
function poolCap(address) external view returns (uint);
2020-09-06 12:08:29 +00:00
function checkSettleLogics(address, address[] calldata) external view returns (bool);
2020-08-22 03:07:55 +00:00
}
interface RateInterface {
2020-08-24 00:40:01 +00:00
function getTotalToken() external returns (uint totalUnderlyingTkn);
2020-08-22 03:07:55 +00:00
}
2020-09-06 21:11:49 +00:00
contract PoolToken is ReentrancyGuard, ERC20Pausable, DSMath {
2020-09-06 16:01:27 +00:00
using SafeERC20 for IERC20;
event LogExchangeRate(uint exchangeRate, uint tokenBalance, uint insuranceAmt);
event LogSettle(uint settleBlock);
event LogDeposit(address indexed user, uint depositAmt, uint poolMintAmt);
event LogWithdraw(address indexed user, uint withdrawAmt, uint poolBurnAmt);
event LogWithdrawFee(uint amount);
IERC20 public immutable baseToken; // Base token. Eg:- DAI, USDC, etc.
RegistryInterface public immutable registry; // Pool Registry
IndexInterface public constant instaIndex = IndexInterface(0x2971AdFa57b20E5a416aE5a708A8655A9c74f723); // Main Index
uint public exchangeRate; // initial 1 token = 1
uint public feeAmt; // fee collected on profits
constructor(
2020-09-06 21:11:49 +00:00
address _registry,
string memory _name,
string memory _symbol,
address _baseToken
2020-09-06 16:01:27 +00:00
) public ERC20(_name, _symbol) {
2020-09-06 21:11:49 +00:00
baseToken = IERC20(_baseToken);
registry = RegistryInterface(_registry);
exchangeRate = 10 ** uint(36 - ERC20(_baseToken).decimals());
2020-09-06 16:01:27 +00:00
}
modifier isChief() {
2020-09-06 21:11:49 +00:00
require(registry.chief(msg.sender) || msg.sender == instaIndex.master(), "not-chief");
_;
}
2020-09-06 16:01:27 +00:00
/**
2020-09-06 22:00:20 +00:00
* @dev sets exchange rate
*/
2020-09-06 16:01:27 +00:00
function setExchangeRate() public {
require(msg.sender == address(this), "not-pool-address");
2020-09-06 21:11:49 +00:00
uint _prevRate = exchangeRate;
2020-09-06 16:01:27 +00:00
uint _totalToken = RateInterface(registry.poolLogic(address(this))).getTotalToken();
_totalToken = sub(_totalToken, feeAmt);
2020-09-08 11:52:04 +00:00
uint _newRate = wdiv(totalSupply(), _totalToken);
2020-09-06 21:11:49 +00:00
require(_newRate != 0, "current-rate-is-zero");
2020-09-06 22:00:20 +00:00
uint _tokenBal = wdiv(totalSupply(), _prevRate);
2020-09-06 21:11:49 +00:00
if (_newRate > _prevRate) {
_newRate = _prevRate;
} else {
2020-09-06 16:01:27 +00:00
uint _newFee = wmul(sub(_totalToken, _tokenBal), registry.fee(address(this)));
feeAmt = add(feeAmt, _newFee);
_tokenBal = sub(_totalToken, _newFee);
2020-09-08 11:52:04 +00:00
_newRate = wdiv(totalSupply(), _tokenBal);
2020-08-24 00:40:01 +00:00
}
2020-09-06 21:11:49 +00:00
exchangeRate = _newRate;
2020-09-06 16:01:27 +00:00
emit LogExchangeRate(exchangeRate, _tokenBal, feeAmt);
}
/**
2020-09-06 21:11:49 +00:00
* @dev delegate the calls to connector and this function is ran by settle()
2020-09-06 16:01:27 +00:00
* @param _target Target to of Connector.
* @param _data CallData of function in Connector.
*/
2020-09-08 11:52:04 +00:00
function spell(address _target, bytes memory _data) private {
2020-09-06 16:01:27 +00:00
require(_target != address(0), "target-invalid");
assembly {
let succeeded := delegatecall(gas(), _target, add(_data, 0x20), mload(_data), 0, 0)
switch iszero(succeeded)
case 1 {
// throw if delegatecall failed
let size := returndatasize()
returndatacopy(0x00, 0x00, size)
revert(0x00, size)
}
2020-08-22 03:07:55 +00:00
}
2020-09-06 16:01:27 +00:00
}
/**
* @dev Settle the assets on dsa and update exchange rate
* @param _targets array of connector's address
* @param _data array of connector's function calldata
*/
function settle(address[] calldata _targets, bytes[] calldata _data) external isChief {
require(_targets.length == _data.length , "array-length-invalid");
require(registry.checkSettleLogics(address(this), _targets), "not-logic");
for (uint i = 0; i < _targets.length; i++) {
spell(_targets[i], _data[i]);
2020-08-29 15:24:21 +00:00
}
2020-09-06 16:01:27 +00:00
emit LogSettle(block.number);
}
/**
* @dev Deposit token.
* @param tknAmt token amount
2020-09-06 21:11:49 +00:00
* @return mintAmt amount of wrap token minted
2020-09-06 16:01:27 +00:00
*/
2020-09-12 09:33:57 +00:00
function deposit(uint tknAmt) public payable whenNotPaused returns (uint mintAmt) {
2020-09-06 16:01:27 +00:00
require(msg.value == 0, "non-eth-pool");
uint _tokenBal = wdiv(totalSupply(), exchangeRate);
uint _newTknBal = add(_tokenBal, tknAmt);
2020-09-06 22:00:20 +00:00
require(_newTknBal < registry.poolCap(address(this)), "pool-cap-reached");
2020-09-06 16:01:27 +00:00
baseToken.safeTransferFrom(msg.sender, address(this), tknAmt);
2020-09-06 21:11:49 +00:00
mintAmt = wmul(tknAmt, exchangeRate);
_mint(msg.sender, mintAmt);
emit LogDeposit(msg.sender, tknAmt, mintAmt);
2020-09-06 16:01:27 +00:00
}
/**
* @dev Withdraw tokens.
* @param tknAmt token amount
2020-09-06 21:11:49 +00:00
* @param target withdraw tokens to address
* @return wdAmt amount of token withdrawn
2020-09-06 16:01:27 +00:00
*/
2020-09-06 21:11:49 +00:00
function withdraw(uint tknAmt, address target) external nonReentrant whenNotPaused returns (uint wdAmt) {
require(target != address(0), "invalid-target-address");
2020-09-06 16:01:27 +00:00
uint _userBal = wdiv(balanceOf(msg.sender), exchangeRate);
uint _burnAmt;
if (tknAmt >= _userBal) {
_burnAmt = balanceOf(msg.sender);
2020-09-06 21:11:49 +00:00
wdAmt = _userBal;
2020-09-06 16:01:27 +00:00
} else {
_burnAmt = wmul(tknAmt, exchangeRate);
2020-09-06 21:11:49 +00:00
wdAmt = tknAmt;
2020-08-22 03:07:55 +00:00
}
2020-09-06 21:11:49 +00:00
require(wdAmt <= baseToken.balanceOf(address(this)), "not-enough-liquidity-available");
2020-09-06 16:01:27 +00:00
_burn(msg.sender, _burnAmt);
2020-09-06 21:11:49 +00:00
baseToken.safeTransfer(target, wdAmt);
2020-09-06 16:01:27 +00:00
2020-09-06 21:11:49 +00:00
emit LogWithdraw(msg.sender, wdAmt, _burnAmt);
2020-09-06 16:01:27 +00:00
}
/**
2020-09-06 21:11:49 +00:00
* @dev withdraw fee from the pool
* @notice only master can call this function
* @param wdAmt fee amount to withdraw
2020-09-06 16:01:27 +00:00
*/
function withdrawFee(uint wdAmt) external {
require(msg.sender == instaIndex.master(), "not-master");
if (wdAmt > feeAmt) wdAmt = feeAmt;
baseToken.safeTransfer(msg.sender, wdAmt);
feeAmt = sub(feeAmt, wdAmt);
emit LogWithdrawFee(wdAmt);
}
/**
* @dev Shut the pool.
* @notice only master can call this function.
*/
function shutdown() external {
require(msg.sender == instaIndex.master(), "not-master");
paused() ? _unpause() : _pause();
}
receive() external payable {}
2020-09-06 21:11:49 +00:00
}