Created
May 30, 2018 21:57
-
-
Save lingqingmeng/59e850346b7a46f6e24e44f1328ea010 to your computer and use it in GitHub Desktop.
Shipment Contract Factory Solidity File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.13; | |
library SafeMath { | |
/** | |
* @dev Multiplies two numbers, throws on overflow. | |
*/ | |
function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
if (a == 0) { | |
return 0; | |
} | |
uint256 c = a * b; | |
assert(c / a == b); | |
return c; | |
} | |
/** | |
* @dev Integer division of two numbers, truncating the quotient. | |
*/ | |
function div(uint256 a, uint256 b) internal pure returns (uint256) { | |
// assert(b > 0); // Solidity automatically throws when dividing by 0 | |
uint256 c = a / b; | |
// assert(a == b * c + a % b); // There is no case in which this doesn't hold | |
return c; | |
} | |
/** | |
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). | |
*/ | |
function sub(uint256 a, uint256 b) internal pure returns (uint256) { | |
assert(b <= a); | |
return a - b; | |
} | |
/** | |
* @dev Adds two numbers, throws on overflow. | |
*/ | |
function add(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 c = a + b; | |
assert(c >= a); | |
return c; | |
} | |
} | |
contract Ownable { | |
address public owner; | |
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
/** | |
* @dev The Ownable constructor sets the original `owner` of the contract to the sender | |
* account. | |
*/ | |
function Ownable() public { | |
owner = msg.sender; | |
} | |
/** | |
* @dev Throws if called by any account other than the owner. | |
*/ | |
modifier onlyOwner() { | |
require(msg.sender == owner); | |
_; | |
} | |
/** | |
* @dev Allows the current owner to transfer control of the contract to a newOwner. | |
* @param newOwner The address to transfer ownership to. | |
*/ | |
function transferOwnership(address newOwner) public onlyOwner { | |
require(newOwner != address(0)); | |
OwnershipTransferred(owner, newOwner); | |
owner = newOwner; | |
} | |
} | |
contract ERC20Basic { | |
function totalSupply() public view returns (uint256); | |
function balanceOf(address who) public view returns (uint256); | |
function transfer(address to, uint256 value) public returns (bool); | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
} | |
contract ERC20 is ERC20Basic { | |
function allowance(address owner, address spender) public view returns (uint256); | |
function transferFrom(address from, address to, uint256 value) public returns (bool); | |
function approve(address spender, uint256 value) public returns (bool); | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
} | |
library SafeERC20 { | |
function safeTransfer(ERC20Basic token, address to, uint256 value) internal { | |
assert(token.transfer(to, value)); | |
} | |
function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { | |
assert(token.transferFrom(from, to, value)); | |
} | |
function safeApprove(ERC20 token, address spender, uint256 value) internal { | |
assert(token.approve(spender, value)); | |
} | |
} | |
contract TokenVesting is Ownable { | |
using SafeMath for uint256; | |
using SafeERC20 for ERC20Basic; | |
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 _duration duration in seconds of the period in which the tokens will vest | |
* @param _revocable whether the vesting is revocable or not | |
*/ | |
function TokenVesting(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 | |
*/ | |
function release(ERC20Basic token) public { | |
uint256 unreleased = releasableAmount(token); | |
require(unreleased > 0); | |
released[token] = released[token].add(unreleased); | |
token.safeTransfer(beneficiary, unreleased); | |
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 | |
*/ | |
function revoke(ERC20Basic token) public onlyOwner { | |
require(revocable); | |
require(!revoked[token]); | |
uint256 balance = token.balanceOf(this); | |
uint256 unreleased = releasableAmount(token); | |
uint256 refund = balance.sub(unreleased); | |
revoked[token] = true; | |
token.safeTransfer(owner, refund); | |
Revoked(); | |
} | |
/** | |
* @dev Calculates the amount that has already vested but hasn't been released yet. | |
* @param token ERC20 token which is being vested | |
*/ | |
function releasableAmount(ERC20Basic 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 | |
*/ | |
function vestedAmount(ERC20Basic token) public view returns (uint256) { | |
uint256 currentBalance = token.balanceOf(this); | |
uint256 totalBalance = currentBalance.add(released[token]); | |
if (now < cliff) { | |
return 0; | |
} else if (now >= start.add(duration) || revoked[token]) { | |
return totalBalance; | |
} else { | |
return totalBalance.mul(now.sub(start)).div(duration); | |
} | |
} | |
} | |
contract TokenVestingFactory is Ownable { | |
event Created(TokenVesting vesting); | |
function create( | |
address _beneficiary, | |
uint256 _start, | |
uint256 _cliff, | |
uint256 _duration | |
) onlyOwner public returns (TokenVesting) { | |
TokenVesting vesting = new TokenVesting( | |
_beneficiary, | |
_start, | |
_cliff, | |
_duration, | |
true | |
); | |
emit Created(vesting); | |
return vesting; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment