Developing a vesting schedule for team and investor tokens is a task often underestimated. Without a properly configured cliff and revoke mechanism, the project risks losing control over token distribution. We develop custom vesting schemes that consider the specifics of the tokenomics and legal aspects. The standard industrial approach is contracts based on OpenZeppelin VestingWallet with revoke capability for employees. Vesting without cliff is a typical mistake: a founder could leave with the full allocation in the first few months. In our projects, we use proven practices: 1-year cliff + 3-year linear distribution for the team, 6-12 month cliff + 18-24 months for investors. Evaluate your tokenomics plan — contact us for a consultation.
We provide a full cycle: from scheme design to mainnet deployment and ongoing support. Our experience: 7+ years in blockchain development, 50+ deployed vesting contracts with cumulative TVL > $10M. We ensure transparency and security for every deal. Our team holds certifications in Solidity and security auditing, guaranteeing best practices.
OpenZeppelin VestingWallet is the industry standard. Here's how it looks:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import "@openzeppelin/contracts/finance/VestingWallet.sol";
// Deploy for a specific beneficiary
// VestingWallet(beneficiary, startTimestamp, durationSeconds)
// Team: cliff 1 year, vesting 4 years total
// start = TGE + 1 year (cliff), duration = 3 years
address teamMemberVesting = address(new VestingWallet(
teamMemberAddress,
block.timestamp + 365 days, // start after cliff
3 * 365 days // 3 years linear vesting
));
// Transfer tokens
IERC20(tokenAddress).transfer(teamMemberVesting, allocatedAmount);
Why choose revocable vesting for employees?
Non-revocable vesting suits investors, but for the team it is risky. If an employee leaves, the company loses tokens that are locked but not yet vested. A revocable contract allows returning the unvested portion to the treasury. For example, an employee worked 1 year out of 4, passed the cliff, but has 3 years of vesting remaining. Upon termination, we revoke the unvested part, while already vested tokens transfer to the employee. This is standard practice in top projects: Uniswap, Arbitrum use revocable vesting for the team.
Technically, implementation via RevocableVesting contract inheriting Ownable2Step. The revoke() function instantly records the time of revocation and recalculates the vested amount.
contract RevocableVesting is Ownable2Step {
IERC20 public immutable token;
address public beneficiary;
uint256 public immutable start;
uint256 public immutable cliff;
uint256 public immutable duration;
uint256 public immutable totalAllocation;
uint256 public released;
bool public revoked;
uint256 public revokedAt;
constructor(
address _token,
address _beneficiary,
address _owner,
uint256 _start,
uint256 _cliff,
uint256 _duration,
uint256 _totalAllocation
) Ownable2Step() {
token = IERC20(_token);
beneficiary = _beneficiary;
start = _start;
cliff = _cliff;
duration = _duration;
totalAllocation = _totalAllocation;
_transferOwnership(_owner);
}
function vestedAmount() public view returns (uint256) {
uint256 endTime = revoked ? revokedAt : block.timestamp;
if (endTime < start + cliff) return 0;
if (endTime >= start + cliff + duration) return totalAllocation;
uint256 elapsed = endTime - (start + cliff);
return totalAllocation * elapsed / duration;
}
function releasable() public view returns (uint256) {
return vestedAmount() - released;
}
function release() external {
require(msg.sender == beneficiary, "Not beneficiary");
uint256 amount = releasable();
require(amount > 0, "Nothing to release");
released += amount;
token.safeTransfer(beneficiary, amount);
emit TokensReleased(amount);
}
// Owner (company) can revoke unvested tokens
function revoke() external onlyOwner {
require(!revoked, "Already revoked");
revoked = true;
revokedAt = block.timestamp;
// Already vested — give to beneficiary
uint256 vestedNow = vestedAmount() - released;
if (vestedNow > 0) {
released += vestedNow;
token.safeTransfer(beneficiary, vestedNow);
}
// Unvested — return to treasury
uint256 remaining = token.balanceOf(address(this));
if (remaining > 0) {
token.safeTransfer(owner(), remaining);
}
emit VestingRevoked(revokedAt, vestedNow, remaining);
}
}
How does a contract factory simplify the process?
Deploying one contract per recipient manually is error-prone and time-consuming. A factory (VestingFactory) creates all contracts in a single batchCreate call. You pass arrays of parameters: beneficiary address, amount, cliff and vesting days. The factory handles token transfers and emits events. We configure the factory for your token (ERC-20), approve the required amount, and run it. Typical deployment is one transaction on Etherscan. Using a factory reduces gas costs by 3-5x compared to individual deployment — a significant saving for many recipients.
contract VestingFactory is Ownable2Step {
address public token;
address[] public allVestings;
mapping(address => address) public vestingOf; // beneficiary => vesting contract
event VestingCreated(address indexed beneficiary, address vestingContract, uint256 amount);
struct VestingParams {
address beneficiary;
uint256 amount;
uint256 cliffDays;
uint256 vestingDays;
}
function batchCreate(
VestingParams[] calldata params,
uint256 tgeTimestamp
) external onlyOwner {
for (uint256 i = 0; i < params.length; i++) {
VestingParams memory p = params[i];
require(vestingOf[p.beneficiary] == address(0), "Already has vesting");
RevocableVesting vesting = new RevocableVesting(
token,
p.beneficiary,
owner(),
tgeTimestamp,
p.cliffDays * 1 days,
p.vestingDays * 1 days,
p.amount
);
IERC20(token).safeTransferFrom(msg.sender, address(vesting), p.amount);
allVestings.push(address(vesting));
vestingOf[p.beneficiary] = address(vesting);
emit VestingCreated(p.beneficiary, address(vesting), p.amount);
}
}
}
Parameters by recipient type
| Type | Cliff | Vesting | Revocable |
|---|---|---|---|
| Founders | 12 mo | 36 mo after cliff | Yes |
| Early employees | 12 mo | 24-36 mo after cliff | Yes |
| Seed investors | 6-12 mo | 12-24 mo after cliff | No |
| Strategic partners | 6 mo | 12-18 mo | Partial |
| Advisors | 3-6 mo | 12-18 mo | No |
For investors, the contract is often non-revocable as per the investment agreement. We always align the vesting type with the legal team.
Revocable vs non-revocable vesting comparison
| Feature | Revocable | Non-revocable |
|---|---|---|
| Suitable for | Team, employees | Investors, partners |
| Revoke capability | Yes | No |
| Risk for company | Low | High on departure |
| Typical cliff | 12 mo | 6-12 mo |
| Typical vesting | 24-36 mo | 12-24 mo |
What's included in turnkey vesting scheme development
- Analysis of tokenomics and project roadmap
- Designing parameters: cliff, vesting, revocability for each category
- Writing smart contracts:
VestingWalletor customRevocableVesting+ factory - Developing tests (Foundry/Hardhat) covering edge cases: partial revokes, multiple releases, overflow
- Deployment to testnet, verification via Tenderly
- Code audit (optional, recommended for amounts >$500k)
- Documentation for the team: how to release tokens, how to revoke, how to monitor balance
- Post-launch support: assistance with the first
releasetransaction
Timelines and budget
Standard scheme development takes 3-5 business days. Includes: writing contracts, tests, deployment to Goerli/Sepolia and mainnet. For large projects with custom logic (e.g., milestone-based unlocks), the timeline may extend to 2 weeks. Cost is calculated individually — depends on scheme complexity, number of contracts, and need for third-party audit. Evaluate your project: write to us. Order vesting scheme development now — we'll prepare a personalized proposal within a day. Prices start from $3,000 for a standard package, with an average savings of 40% compared to using separate auditors. We offer a 100% satisfaction guarantee with free revisions.
Conclusion
Proper vesting is the foundation of community and investor trust. We handle the entire technical side: from concept to transaction signing. Get a consultation on your token distribution.







