@merkl/api 0.10.204 → 0.10.205
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
| @@ -311,7 +311,7 @@ export class RewardService { | |
| 311 311 | 
             
                    for (const { amount, rewardToken: address, chainId, startTimestamp: start, endTimestamp: end, campaignId, } of dynamicData) {
         | 
| 312 312 | 
             
                        const timespan = Math.abs(end - start);
         | 
| 313 313 | 
             
                        const dayspan = Math.max(1, Math.floor(timespan / (60 * 60 * 24)));
         | 
| 314 | 
            -
                        const dailyAmount = moment. | 
| 314 | 
            +
                        const dailyAmount = moment().unix() <= end && moment().unix() >= start ? BigInt(amount) / BigInt(dayspan) : BigInt(0);
         | 
| 315 315 | 
             
                        const campaignDailyValue = await TokenService.getValue([{ amount: dailyAmount, address, chainId }]);
         | 
| 316 316 | 
             
                        breakdowns.push({
         | 
| 317 317 | 
             
                            campaignId: CampaignService.hashId({ campaignId, distributionChain: chainId }),
         |