Skip to content

Commit feff19a

Browse files
authored
feat: add gnosis eure campaign (#2428)
1 parent 1cc91b4 commit feff19a

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
@@ -83,6 +83,11 @@ const IncentivesSymbolMap: {
8383
symbol: 'aweETH',
8484
aToken: true,
8585
},
86+
aGnoEURe: {
87+
tokenIconSymbol: 'EURe',
88+
symbol: 'aEURe',
89+
aToken: true,
90+
},
8691
};
8792

8893
interface IncentivesTooltipContentProps {

src/hooks/useMeritIncentives.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66
AaveV3Base,
77
AaveV3Ethereum,
88
AaveV3EthereumLido,
9+
AaveV3Gnosis,
910
AaveV3Sonic,
1011
} from '@bgd-labs/aave-address-book';
1112
import { useQuery } from '@tanstack/react-query';
@@ -37,6 +38,7 @@ export enum MeritAction {
3738
AVALANCHE_SUPPLY_SAVAX = 'avalanche-supply-savax',
3839
AVALANCHE_SUPPLY_AUSD = 'avalanche-supply-ausd',
3940
SONIC_SUPPLY_USDCE = 'sonic-supply-usdce',
41+
GNOSIS_BORROW_EURE = 'gnosis-borrow-eure',
4042
}
4143

4244
type MeritIncentives = {
@@ -354,6 +356,19 @@ const MERIT_DATA_MAP: Record<string, Record<string, MeritReserveIncentiveData[]>
354356
},
355357
],
356358
},
359+
[CustomMarket.proto_gnosis_v3]: {
360+
['EURe']: [
361+
{
362+
action: MeritAction.GNOSIS_BORROW_EURE,
363+
rewardTokenAddress: AaveV3Gnosis.ASSETS.EURe.V_TOKEN,
364+
rewardTokenSymbol: 'aGnoEURe',
365+
protocolAction: ProtocolAction.borrow,
366+
customMessage: antiLoopMessage,
367+
customForumLink:
368+
'https://governance.aave.com/t/arfc-set-aci-as-emission-manager-for-liquidity-mining-programs/17898/83',
369+
},
370+
],
371+
},
357372
};
358373

359374
export const useMeritIncentives = ({

0 commit comments

Comments
 (0)