|
|
|
/* solium-disable security/no-block-members */
|
|
|
|
|
|
|
|
pragma solidity ^0.4.24;
|
|
|
|
|
|
|
|
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 {
|
|
|
|
using SafeMath for uint256;
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
using SafeERC20 for IERC20;
|
|
|
|
|
|
|
|
event Released(uint256 amount);
|
|
|
|
event Revoked();
|
|
|
|
|
|
|
|
// beneficiary of tokens after they are released
|
|
|
|
address public beneficiary;
|
|
|
|
|
|
|
|
uint256 public cliff;
|
|
|
|
uint256 public start;
|
|
|
|
uint256 public duration;
|
|
|
|
|
|
|
|
bool public revocable;
|
|
|
|
|
|
|
|
mapping (address => uint256) public released;
|
|
|
|
mapping (address => bool) public 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 _cliff 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 _cliff,
|
|
|
|
uint256 _duration,
|
|
|
|
bool _revocable
|
|
|
|
)
|
|
|
|
public
|
|
|
|
{
|
|
|
|
require(_beneficiary != address(0));
|
|
|
|
require(_cliff <= _duration);
|
|
|
|
|
|
|
|
beneficiary = _beneficiary;
|
|
|
|
revocable = _revocable;
|
|
|
|
duration = _duration;
|
|
|
|
cliff = _start.add(_cliff);
|
|
|
|
start = _start;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @notice Transfers vested tokens to beneficiary.
|
|
|
|
* @param _token ERC20 token which is being vested
|
|
|
|
*/
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
function release(IERC20 _token) public {
|
|
|
|
uint256 unreleased = releasableAmount(_token);
|
|
|
|
|
|
|
|
require(unreleased > 0);
|
|
|
|
|
|
|
|
released[_token] = released[_token].add(unreleased);
|
|
|
|
|
|
|
|
_token.safeTransfer(beneficiary, unreleased);
|
|
|
|
|
|
|
|
emit Released(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
|
|
|
|
*/
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
function revoke(IERC20 _token) public onlyOwner {
|
|
|
|
require(revocable);
|
|
|
|
require(!revoked[_token]);
|
|
|
|
|
|
|
|
uint256 balance = _token.balanceOf(address(this));
|
|
|
|
|
|
|
|
uint256 unreleased = releasableAmount(_token);
|
|
|
|
uint256 refund = balance.sub(unreleased);
|
|
|
|
|
|
|
|
revoked[_token] = true;
|
|
|
|
|
|
|
|
_token.safeTransfer(owner(), refund);
|
|
|
|
|
|
|
|
emit Revoked();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Calculates the amount that has already vested but hasn't been released yet.
|
|
|
|
* @param _token ERC20 token which is being vested
|
|
|
|
*/
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
function releasableAmount(IERC20 _token) public view returns (uint256) {
|
|
|
|
return vestedAmount(_token).sub(released[_token]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Calculates the amount that has already vested.
|
|
|
|
* @param _token ERC20 token which is being vested
|
|
|
|
*/
|
Rename ERC interfaces to I prefix (#1252)
* rename ERC20 to IERC20
* move ERC20.sol to IERC20.sol
* rename StandardToken to ERC20
* rename StandardTokenMock to ERC20Mock
* move StandardToken.sol to ERC20.sol, likewise test and mock files
* rename MintableToken to ERC20Mintable
* move MintableToken.sol to ERC20Mintable.sol, likewise test and mock files
* rename BurnableToken to ERC20Burnable
* move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
* rename CappedToken to ERC20Capped
* move CappedToken.sol to ERC20Capped.sol, likewise for related files
* rename PausableToken to ERC20Pausable
* move PausableToken.sol to ERC20Pausable.sol, likewise for related files
* rename DetailedERC20 to ERC20Detailed
* move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
* rename ERC721 to IERC721, and likewise for other related interfaces
* move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
* rename ERC721Token to ERC721
* move ERC721Token.sol to ERC721.sol, likewise for related files
* rename ERC721BasicToken to ERC721Basic
* move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
* rename ERC721PausableToken to ERC721Pausable
* move ERC721PausableToken.sol to ERC721Pausable.sol
* rename ERC165 to IERC165
* move ERC165.sol to IERC165.sol
* amend comment that ERC20 is based on FirstBlood
* fix comments mentioning IERC721Receiver
7 years ago
|
|
|
function vestedAmount(IERC20 _token) public view returns (uint256) {
|
|
|
|
uint256 currentBalance = _token.balanceOf(this);
|
|
|
|
uint256 totalBalance = currentBalance.add(released[_token]);
|
|
|
|
|
|
|
|
if (block.timestamp < cliff) {
|
|
|
|
return 0;
|
|
|
|
} else if (block.timestamp >= start.add(duration) || revoked[_token]) {
|
|
|
|
return totalBalance;
|
|
|
|
} else {
|
|
|
|
return totalBalance.mul(block.timestamp.sub(start)).div(duration);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|