@@ -27,6 +27,8 @@ export enum MeritAction {
27
27
BASE_SUPPLY_WSTETH = 'base-supply-wsteth' ,
28
28
BASE_SUPPLY_WEETH = 'base-supply-weeth' ,
29
29
BASE_SUPPLY_EZETH = 'base-supply-ezeth' ,
30
+ BASE_SUPPLY_EURC = 'base-supply-eurc' ,
31
+ BASE_BORROW_EURC = 'base-borrow-eurc' ,
30
32
BASE_BORROW_USDC = 'base-borrow-usdc' ,
31
33
BASE_BORROW_WSTETH = 'base-borrow-wsteth' ,
32
34
AVALANCHE_SUPPLY_BTCB = 'avalanche-supply-btcb' ,
@@ -67,13 +69,15 @@ const antiLoopMessage =
67
69
const antiLoopBorrowMessage =
68
70
'Supplying of some assets may impact the amount of rewards you are eligible for. Please check the forum post for the full eligibility criteria.' ;
69
71
70
-
71
72
const joinedEthCorrelatedIncentiveForumLink =
72
73
'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/56' ;
73
74
74
75
const joinedEthCorrelatedIncentivePhase2ForumLink =
75
76
'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/70' ;
76
77
78
+ const eurcForumLink =
79
+ 'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/77' ;
80
+
77
81
const MERIT_DATA_MAP : Record < string , Record < string , MeritReserveIncentiveData [ ] > > = {
78
82
[ CustomMarket . proto_mainnet_v3 ] : {
79
83
GHO : [
@@ -276,6 +280,24 @@ const MERIT_DATA_MAP: Record<string, Record<string, MeritReserveIncentiveData[]>
276
280
customForumLink : joinedEthCorrelatedIncentivePhase2ForumLink ,
277
281
} ,
278
282
] ,
283
+ EURC : [
284
+ {
285
+ action : MeritAction . BASE_SUPPLY_EURC ,
286
+ rewardTokenAddress : AaveV3Base . ASSETS . EURC . A_TOKEN ,
287
+ rewardTokenSymbol : 'aBasEURC' ,
288
+ protocolAction : ProtocolAction . supply ,
289
+ customMessage : antiLoopMessage ,
290
+ customForumLink : eurcForumLink ,
291
+ } ,
292
+ {
293
+ action : MeritAction . BASE_BORROW_EURC ,
294
+ rewardTokenAddress : AaveV3Base . ASSETS . EURC . A_TOKEN ,
295
+ rewardTokenSymbol : 'aBasEURC' ,
296
+ protocolAction : ProtocolAction . borrow ,
297
+ customMessage : antiLoopBorrowMessage ,
298
+ customForumLink : eurcForumLink ,
299
+ } ,
300
+ ] ,
279
301
} ,
280
302
[ CustomMarket . proto_avalanche_v3 ] : {
281
303
[ 'BTC.b' ] : [
0 commit comments