// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../token/ERC20/utils/SafeERC20.sol";
contract VestingWallet {
using SafeERC20 for IERC20;
address private _beneficiary;
uint256 private _start;
uint256 private _duration;
event TokensReleased(uint256 amount);
constructor(address beneficiary_, uint256 start_, uint256 duration_) {
require(beneficiary_ != address(0), "VestingWallet: beneficiary is the zero address");
_beneficiary = beneficiary_;
_start = start_;
_duration = duration_;
}
function vestedAmount(IERC20 token) public view returns (uint256) {
// Calculate the vested amount based on the time elapsed
}
function release(IERC20 token) public {
// Releases tokens to the beneficiary based on the vesting schedule
// Emits TokensReleased event upon successful release
}
}
Register for the ZELEN Systems Newsletter
Thank you for signing up for our newsletter!
You will now be among the first to receive exclusive updates on Zelen Systems, including news about our latest developments, upcoming events, and exciting partnerships. Stay tuned for more information on how we are revolutionizing the cannabis industry and making it more accessible than ever before.
Oops, it looks like there was an issue sending your request.
Please ensure that all required fields are filled out correctly and try again.
Upcoming Events
>> Major Announcements
>> Partnerships (ZLNC) Allocation
>> ZELEN Wallet Public Release
>> (ZLNC) Digital Utility Offering
In The News