Skip to content

Commit 47579bb

Browse files
authored
feat: add points for ethena & etherfi (#2673)
1 parent 4120bef commit 47579bb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/hooks/useEthenaIncentives.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
import { AaveV3Ethereum, AaveV3EthereumLido } from '@bgd-labs/aave-address-book';
1+
import { AaveV3Ethereum, AaveV3EthereumLido, AaveV3Plasma } from '@bgd-labs/aave-address-book';
22

33
const getEthenaData = (assetAddress: string): number | undefined =>
44
ETHENA_DATA_MAP.get(assetAddress);
55

66
const ETHENA_DATA_MAP: Map<string, number> = new Map([
77
[AaveV3Ethereum.ASSETS.USDe.A_TOKEN, 5],
88
[AaveV3Ethereum.ASSETS.sUSDe.A_TOKEN, 5],
9+
[AaveV3Plasma.ASSETS.sUSDe.A_TOKEN, 5],
10+
[AaveV3Plasma.ASSETS.USDe.A_TOKEN, 5],
911
[AaveV3EthereumLido.ASSETS.sUSDe.A_TOKEN, 5],
1012
[AaveV3Ethereum.ASSETS.GHO.V_TOKEN, 5],
1113
[AaveV3EthereumLido.ASSETS.GHO.V_TOKEN, 5],
14+
1215
[AaveV3Ethereum.ASSETS.PT_eUSDE_29MAY2025.A_TOKEN, 2],
1316
[AaveV3Ethereum.ASSETS.PT_eUSDE_14AUG2025.A_TOKEN, 2],
1417
[AaveV3Ethereum.ASSETS.PT_USDe_31JUL2025.A_TOKEN, 2],

src/hooks/useEtherfiIncentives.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const ETHERFI_DATA_MAP: Map<string, number> = new Map([
1818
[`${CustomMarket.proto_scroll_v3}-${ProtocolAction.supply}-weETH`, 3],
1919
[`${CustomMarket.proto_zksync_v3}-${ProtocolAction.supply}-weETH`, 3],
2020
[`${CustomMarket.proto_linea_v3}-${ProtocolAction.supply}-weETH`, 3],
21+
[`${CustomMarket.proto_plasma_v3}-${ProtocolAction.supply}-weETH`, 3],
2122
]);
2223

2324
export const useEtherfiIncentives = (

0 commit comments

Comments
 (0)