added examples

This commit is contained in:
Aniket-Engg
2018-12-21 16:50:16 +05:30
parent a781955434
commit c3c5d767ff
7 changed files with 128 additions and 162 deletions

View File

@ -0,0 +1,23 @@
pragma solidity ^0.4.24;
import "../drafts/TokenVesting.sol";
/**
* @title SampleTokenVesting
* @dev This is an example of a token vesting for defined time period.
* Tokens to be vested will be sent directly to this contract.
*/
contract SampleTokenVesting is TokenVesting{
constructor(
address beneficiary,
uint256 start,
uint256 cliffDuration,
uint256 duration,
bool revocable
)
public
TokenVesting(beneficiary, start, cliffDuration, duration, revocable){}
}