Closed tgrecojs closed 3 months ago
The airdrop utilizes a distribution schedule designed to incentivize early token claims. This schedule is structured as an array, with each object within the array containing information about each epoch. Collectively, these objects encapsulate all of the contract's significant values in relation to time.
/**
* @typedef {Object} EpochDetails
* @property {number} epoch - The current epoch number of the airdrop.
* @property {number} length - The length of time, in seconds, that this epoch will last.
* @property {number} quantity - The number of tokens that users will receive when they claim airdrop in this epoch.
***/
LAR-78 Distribution Timer