Technical Details
Decoding the Technical Insights of WRK Token
uint256 releaseTime = 2524608000;
createVesting(msg.sender, lockedAmount, releaseTime);
// Declares a variable releaseTime of type uint256 (unsigned 256-bit integer).
// Sets the release time for the locked tokens to January 1, 2050, 00:00:00 GMT.
// Calls the function to create a vesting schedule for the contract creator.Last updated