Skip to content

Commit 1fd3ea0

Browse files
authored
Add merit weeth campaign [skip cypress] (#2400)
1 parent 2000354 commit 1fd3ea0

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/components/incentives/IncentivesTooltipContent.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ const IncentivesSymbolMap: {
7373
symbol: 'awS',
7474
aToken: true,
7575
},
76+
aBasweETH: {
77+
tokenIconSymbol: 'weETH',
78+
symbol: 'aweETH',
79+
aToken: true,
80+
},
7681
};
7782

7883
interface IncentivesTooltipContentProps {

src/hooks/useMeritIncentives.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export enum MeritAction {
2525
BASE_SUPPLY_CBBTC = 'base-supply-cbbtc',
2626
BASE_SUPPLY_USDC = 'base-supply-usdc',
2727
BASE_SUPPLY_WSTETH = 'base-supply-wsteth',
28+
BASE_SUPPLY_WEETH = 'base-supply-weeth',
2829
BASE_SUPPLY_EZETH = 'base-supply-ezeth',
2930
BASE_BORROW_USDC = 'base-borrow-usdc',
3031
AVALANCHE_SUPPLY_BTCB = 'avalanche-supply-btcb',
@@ -61,9 +62,13 @@ const getMeritData = (market: string, symbol: string): MeritReserveIncentiveData
6162

6263
const antiLoopMessage =
6364
'Borrowing of some assets may impact the amount of rewards you are eligible for. Please check the forum post for the full eligibility criteria.';
65+
6466
const joinedEthCorrelatedIncentiveForumLink =
6567
'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/56';
6668

69+
const joinedEthCorrelatedIncentivePhase2ForumLink =
70+
'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/70';
71+
6772
const MERIT_DATA_MAP: Record<string, Record<string, MeritReserveIncentiveData[]>> = {
6873
[CustomMarket.proto_mainnet_v3]: {
6974
GHO: [
@@ -248,6 +253,16 @@ const MERIT_DATA_MAP: Record<string, Record<string, MeritReserveIncentiveData[]>
248253
customForumLink: joinedEthCorrelatedIncentiveForumLink,
249254
},
250255
],
256+
weETH: [
257+
{
258+
action: MeritAction.BASE_SUPPLY_WEETH,
259+
rewardTokenAddress: AaveV3Base.ASSETS.weETH.A_TOKEN,
260+
rewardTokenSymbol: 'aBasweETH',
261+
protocolAction: ProtocolAction.supply,
262+
customMessage: antiLoopMessage,
263+
customForumLink: joinedEthCorrelatedIncentivePhase2ForumLink,
264+
},
265+
],
251266
},
252267
[CustomMarket.proto_avalanche_v3]: {
253268
['BTC.b']: [

0 commit comments

Comments
 (0)