123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- pragma solidity ^0.5.7;
- import "../token/ERC20/SafeERC20.sol";
- import "../ownership/Ownable.sol";
- import "../math/SafeMath.sol";
- /**
- * @title TokenVesting
- * @dev A token holder contract that can release its token balance gradually like a
- * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
- * owner.
- */
- contract TokenVesting is Ownable {
- // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is
- // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore,
- // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a
- // cliff period of a year and a duration of four years, are safe to use.
- // solhint-disable not-rely-on-time
- using SafeMath for uint256;
- using SafeERC20 for IERC20;
- event TokensReleased(address token, uint256 amount);
- event TokenVestingRevoked(address token);
- // beneficiary of tokens after they are released
- address private _beneficiary;
- // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp.
- uint256 private _cliff;
- uint256 private _start;
- uint256 private _duration;
- bool private _revocable;
- mapping (address => uint256) private _released;
- mapping (address => bool) private _revoked;
- /**
- * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
- * beneficiary, gradually in a linear fashion until start + duration. By then all
- * of the balance will have vested.
- * @param beneficiary address of the beneficiary to whom vested tokens are transferred
- * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest
- * @param start the time (as Unix time) at which point vesting starts
- * @param duration duration in seconds of the period in which the tokens will vest
- * @param revocable whether the vesting is revocable or not
- */
- constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public {
- require(beneficiary != address(0));
- require(cliffDuration <= duration);
- require(duration > 0);
- require(start.add(duration) > block.timestamp);
- _beneficiary = beneficiary;
- _revocable = revocable;
- _duration = duration;
- _cliff = start.add(cliffDuration);
- _start = start;
- }
- /**
- * @return the beneficiary of the tokens.
- */
- function beneficiary() public view returns (address) {
- return _beneficiary;
- }
- /**
- * @return the cliff time of the token vesting.
- */
- function cliff() public view returns (uint256) {
- return _cliff;
- }
- /**
- * @return the start time of the token vesting.
- */
- function start() public view returns (uint256) {
- return _start;
- }
- /**
- * @return the duration of the token vesting.
- */
- function duration() public view returns (uint256) {
- return _duration;
- }
- /**
- * @return true if the vesting is revocable.
- */
- function revocable() public view returns (bool) {
- return _revocable;
- }
- /**
- * @return the amount of the token released.
- */
- function released(address token) public view returns (uint256) {
- return _released[token];
- }
- /**
- * @return true if the token is revoked.
- */
- function revoked(address token) public view returns (bool) {
- return _revoked[token];
- }
- /**
- * @notice Transfers vested tokens to beneficiary.
- * @param token ERC20 token which is being vested
- */
- function release(IERC20 token) public {
- uint256 unreleased = _releasableAmount(token);
- require(unreleased > 0);
- _released[address(token)] = _released[address(token)].add(unreleased);
- token.safeTransfer(_beneficiary, unreleased);
- emit TokensReleased(address(token), unreleased);
- }
- /**
- * @notice Allows the owner to revoke the vesting. Tokens already vested
- * remain in the contract, the rest are returned to the owner.
- * @param token ERC20 token which is being vested
- */
- function revoke(IERC20 token) public onlyOwner {
- require(_revocable);
- require(!_revoked[address(token)]);
- uint256 balance = token.balanceOf(address(this));
- uint256 unreleased = _releasableAmount(token);
- uint256 refund = balance.sub(unreleased);
- _revoked[address(token)] = true;
- token.safeTransfer(owner(), refund);
- emit TokenVestingRevoked(address(token));
- }
- /**
- * @dev Calculates the amount that has already vested but hasn't been released yet.
- * @param token ERC20 token which is being vested
- */
- function _releasableAmount(IERC20 token) private view returns (uint256) {
- return _vestedAmount(token).sub(_released[address(token)]);
- }
- /**
- * @dev Calculates the amount that has already vested.
- * @param token ERC20 token which is being vested
- */
- function _vestedAmount(IERC20 token) private view returns (uint256) {
- uint256 currentBalance = token.balanceOf(address(this));
- uint256 totalBalance = currentBalance.add(_released[address(token)]);
- if (block.timestamp < _cliff) {
- return 0;
- } else if (block.timestamp >= _start.add(_duration) || _revoked[address(token)]) {
- return totalBalance;
- } else {
- return totalBalance.mul(block.timestamp.sub(_start)).div(_duration);
- }
- }
- }
|