From 1d6b1273ce03abffdf841700a9694372b5bb81d0 Mon Sep 17 00:00:00 2001 From: Alejandro <95312462+AGMASO@users.noreply.github.com> Date: Thu, 20 Nov 2025 09:14:35 -0300 Subject: [PATCH] feat: delete incentives points for sonic --- src/hooks/useSonicIncentives.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/hooks/useSonicIncentives.tsx b/src/hooks/useSonicIncentives.tsx index 511b228208..d5552c8b54 100644 --- a/src/hooks/useSonicIncentives.tsx +++ b/src/hooks/useSonicIncentives.tsx @@ -1,12 +1,7 @@ -import { AaveV3Sonic } from '@bgd-labs/aave-address-book'; - const getSonicData = (assetAddress: string): number | undefined => SONIC_DATA_MAP.get(assetAddress); const SONIC_DATA_MAP: Map = new Map([ - [AaveV3Sonic.ASSETS.WETH.A_TOKEN, 4], - [AaveV3Sonic.ASSETS.USDC.A_TOKEN, 8], - [AaveV3Sonic.ASSETS.wS.A_TOKEN, 12], - [AaveV3Sonic.ASSETS.stS.A_TOKEN, 12], + // No incentives at the moment ]); export const useSonicIncentives = (rewardedAsset?: string) => {