hindley-milner-systems / dapp-ertp-airdrop

0 stars 2 forks source link

Distribution Timer #19

Closed tgrecojs closed 3 months ago

linear[bot] commented 8 months ago

LAR-78 Distribution Timer

tgrecojs commented 8 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.
 ***/