Files
dodo-contractV2/contracts/CrowdPooling/impl/CPVesting.sol

73 lines
2.2 KiB
Solidity
Raw Normal View History

2020-12-11 22:52:00 +08:00
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
import {SafeMath} from "../../lib/SafeMath.sol";
import {DecimalMath} from "../../lib/DecimalMath.sol";
import {Ownable} from "../../lib/Ownable.sol";
import {SafeERC20} from "../../lib/SafeERC20.sol";
import {IERC20} from "../../intf/IERC20.sol";
2020-12-12 15:53:42 +08:00
import {CPFunding} from "./CPFunding.sol";
2020-12-11 22:52:00 +08:00
/**
2020-12-12 15:53:42 +08:00
* @title CPVesting
2020-12-11 22:52:00 +08:00
* @author DODO Breeder
*
* @notice Lock Token and release it linearly
*/
2020-12-12 15:53:42 +08:00
contract CPVesting is CPFunding {
2020-12-11 22:52:00 +08:00
using SafeMath for uint256;
using SafeERC20 for IERC20;
modifier afterSettlement() {
require(_SETTLED_, "NOT_SETTLED");
_;
}
2020-12-18 18:31:45 +08:00
modifier afterFreeze() {
require(_SETTLED_ && block.timestamp >= _SETTLED_TIME_.add(_FREEZE_DURATION_), "FREEZED");
_;
}
2020-12-18 16:08:02 +08:00
// ============ Bidder Functions ============
2020-12-11 22:52:00 +08:00
2020-12-18 16:08:02 +08:00
function bidderClaim() external afterSettlement {
require(!_CLAIMED_[msg.sender], "ALREADY_CLAIMED");
_CLAIMED_[msg.sender] = true;
2020-12-11 22:52:00 +08:00
_transferBaseOut(msg.sender, _UNUSED_BASE_.mul(_SHARES_[msg.sender]).div(_TOTAL_SHARES_));
2020-12-18 16:08:02 +08:00
_transferQuoteOut(msg.sender, _UNUSED_QUOTE_.mul(_SHARES_[msg.sender]).div(_TOTAL_SHARES_));
2020-12-11 22:52:00 +08:00
}
2020-12-18 16:08:02 +08:00
// ============ Owner Functions ============
2020-12-18 18:31:45 +08:00
function claimLPToken() external onlyOwner afterFreeze {
2020-12-18 16:08:02 +08:00
IERC20(_POOL_).safeTransfer(_OWNER_, getClaimableLPToken());
}
2020-12-18 18:31:45 +08:00
function getClaimableLPToken() public view afterFreeze returns (uint256) {
2020-12-18 16:08:02 +08:00
uint256 remainingLPToken = DecimalMath.mulFloor(
getRemainingLPRatio(block.timestamp),
_TOTAL_LP_AMOUNT_
);
return IERC20(_POOL_).balanceOf(address(this)).sub(remainingLPToken);
2020-12-11 22:52:00 +08:00
}
2020-12-18 18:31:45 +08:00
function getRemainingLPRatio(uint256 timestamp) public view afterFreeze returns (uint256) {
uint256 timePast = timestamp.sub(_SETTLED_TIME_.add(_FREEZE_DURATION_));
2020-12-18 16:08:02 +08:00
if (timePast < _VESTING_DURATION_) {
uint256 remainingTime = _VESTING_DURATION_.sub(timePast);
return DecimalMath.ONE.sub(_CLIFF_RATE_).mul(remainingTime).div(_VESTING_DURATION_);
} else {
return 0;
}
2020-12-11 22:52:00 +08:00
}
}