From 1c8effb33d688f806cc63119733fa08025e0d836 Mon Sep 17 00:00:00 2001 From: AGMASO Date: Thu, 30 Apr 2026 09:19:22 +0200 Subject: [PATCH] feat: add aUSDe address to whitelist --- src/hooks/useMerklIncentives.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/hooks/useMerklIncentives.ts b/src/hooks/useMerklIncentives.ts index edb4173610..d7f882a86a 100644 --- a/src/hooks/useMerklIncentives.ts +++ b/src/hooks/useMerklIncentives.ts @@ -146,7 +146,10 @@ type WhitelistApiResponse = { const MERKL_ENDPOINT = 'https://api.merkl.xyz/v4/opportunities?mainProtocolId=aave&items=100&status=LIVE'; // Merkl API const WHITELIST_ENDPOINT = 'https://apps.aavechan.com/api/aave/merkl/whitelist-token-list'; // Endpoint to fetch whitelisted tokens -const EXTRA_WHITELIST_TOKENS = ['0xE3190143Eb552456F88464662f0c0C4aC67A77eB'.toLowerCase()]; +const EXTRA_WHITELIST_TOKENS = [ + '0xE3190143Eb552456F88464662f0c0C4aC67A77eB'.toLowerCase(), + '0x78f2cB75D664d6f71433174056c25A5958B4016F'.toLowerCase(), +]; // Extra tokens to whitelist const AAVE_NET_APR_DISTRIBUTION_TYPE = 'AAVE_NET_APR'; const convertApyToApr = (apy: number) => 12 * ((1 + apy) ** (1 / 12) - 1); @@ -291,7 +294,6 @@ export const useMerklIncentives = ({ }, 0); const merklIncentivesAPY = convertAprToApy(totalMerklAPR); - console.log('Total Merkl APR:', totalMerklAPR, '=> APY:', merklIncentivesAPY); const aprsBreakdowns = whitelistedOpportunities.flatMap((opp) => opp.aprRecord.breakdowns); const breakdownTokens = whitelistedOpportunities.flatMap((opp) => { return opp.rewardsRecord.breakdowns;