Skip to content

Instantly share code, notes, and snippets.

@jfluity
Created May 24, 2021 20:27
Show Gist options
  • Save jfluity/81d112c65e391c3c58e524624a8de5a6 to your computer and use it in GitHub Desktop.
Save jfluity/81d112c65e391c3c58e524624a8de5a6 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.4.18;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v1.5.0/contracts/token/TokenVesting.sol";
contract FLTYVesting is TokenVesting {
address constant TIMELOCK = 0x747b8E59F4B8D775F3404333Cf9B76Fe7b127e9C;
constructor()
public
TokenVesting(
0x61A9c4c75B7E0454ADFDD28361654bF9ED4166d8, // beneficiary
1651388400, // start, 2022-05-01 00:00:00 PDT
0, // cliff
31536000, // duration, 1 year
true // revocable
)
{
owner = TIMELOCK;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment