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) => {