From 54dc07711e4f10d0b5a4d1442a5871ac47209a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nandy=20B=C3=A2?= Date: Fri, 21 Mar 2025 13:30:38 +0100 Subject: [PATCH 1/3] feat: add Merit supply weETH on Base campaign --- src/hooks/useMeritIncentives.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/hooks/useMeritIncentives.ts b/src/hooks/useMeritIncentives.ts index 6a411b08e3..1957c9f962 100644 --- a/src/hooks/useMeritIncentives.ts +++ b/src/hooks/useMeritIncentives.ts @@ -25,6 +25,7 @@ export enum MeritAction { BASE_SUPPLY_CBBTC = 'base-supply-cbbtc', BASE_SUPPLY_USDC = 'base-supply-usdc', BASE_SUPPLY_WSTETH = 'base-supply-wsteth', + BASE_SUPPLY_WEETH = 'base-supply-weeth', BASE_SUPPLY_EZETH = 'base-supply-ezeth', BASE_BORROW_USDC = 'base-borrow-usdc', AVALANCHE_SUPPLY_BTCB = 'avalanche-supply-btcb', @@ -248,6 +249,16 @@ const MERIT_DATA_MAP: Record customForumLink: joinedEthCorrelatedIncentiveForumLink, }, ], + weETH: [ + { + action: MeritAction.BASE_SUPPLY_WEETH, + rewardTokenAddress: AaveV3Base.ASSETS.weETH.A_TOKEN, + rewardTokenSymbol: 'aBasweETH', + protocolAction: ProtocolAction.supply, + customMessage: antiLoopMessage, + customForumLink: joinedEthCorrelatedIncentiveForumLink, + }, + ], }, [CustomMarket.proto_avalanche_v3]: { ['BTC.b']: [ From 25a6dbb15cad8ec20b214f6bed8241b7d98fefe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nandy=20B=C3=A2?= Date: Fri, 21 Mar 2025 13:32:13 +0100 Subject: [PATCH 2/3] feat: update incentive symbol map --- src/components/incentives/IncentivesTooltipContent.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/incentives/IncentivesTooltipContent.tsx b/src/components/incentives/IncentivesTooltipContent.tsx index f35bafa9a5..f5f0c0cd70 100644 --- a/src/components/incentives/IncentivesTooltipContent.tsx +++ b/src/components/incentives/IncentivesTooltipContent.tsx @@ -73,6 +73,11 @@ const IncentivesSymbolMap: { symbol: 'awS', aToken: true, }, + aBasweETH: { + tokenIconSymbol: 'weETH', + symbol: 'aweETH', + aToken: true, + }, }; interface IncentivesTooltipContentProps { From d94ebb0dd75bc8d255e4f408ec770689270088e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nandy=20B=C3=A2?= Date: Tue, 25 Mar 2025 15:21:00 +0100 Subject: [PATCH 3/3] feat: update forum link --- src/hooks/useMeritIncentives.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/hooks/useMeritIncentives.ts b/src/hooks/useMeritIncentives.ts index 1957c9f962..804a52c94b 100644 --- a/src/hooks/useMeritIncentives.ts +++ b/src/hooks/useMeritIncentives.ts @@ -62,9 +62,13 @@ const getMeritData = (market: string, symbol: string): MeritReserveIncentiveData const antiLoopMessage = 'Borrowing of some assets may impact the amount of rewards you are eligible for. Please check the forum post for the full eligibility criteria.'; + const joinedEthCorrelatedIncentiveForumLink = 'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/56'; +const joinedEthCorrelatedIncentivePhase2ForumLink = + 'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/70'; + const MERIT_DATA_MAP: Record> = { [CustomMarket.proto_mainnet_v3]: { GHO: [ @@ -256,7 +260,7 @@ const MERIT_DATA_MAP: Record rewardTokenSymbol: 'aBasweETH', protocolAction: ProtocolAction.supply, customMessage: antiLoopMessage, - customForumLink: joinedEthCorrelatedIncentiveForumLink, + customForumLink: joinedEthCorrelatedIncentivePhase2ForumLink, }, ], },