@defisaver/positions-sdk 2.1.2 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/.mocharc.json +4 -4
  2. package/.nvmrc +1 -1
  3. package/README.md +64 -64
  4. package/cjs/helpers/aaveHelpers/index.js +8 -7
  5. package/cjs/helpers/morphoBlueHelpers/index.js +66 -66
  6. package/cjs/staking/eligibility.d.ts +4 -2
  7. package/cjs/staking/eligibility.js +3 -4
  8. package/cjs/staking/staking.d.ts +2 -1
  9. package/cjs/staking/staking.js +5 -4
  10. package/cjs/types/common.d.ts +1 -1
  11. package/cjs/types/common.js +1 -1
  12. package/esm/helpers/aaveHelpers/index.js +8 -7
  13. package/esm/helpers/morphoBlueHelpers/index.js +66 -66
  14. package/esm/staking/eligibility.d.ts +4 -2
  15. package/esm/staking/eligibility.js +3 -4
  16. package/esm/staking/staking.d.ts +2 -1
  17. package/esm/staking/staking.js +5 -4
  18. package/esm/types/common.d.ts +1 -1
  19. package/esm/types/common.js +1 -1
  20. package/package.json +47 -47
  21. package/src/aaveV2/index.ts +240 -240
  22. package/src/aaveV3/index.ts +614 -614
  23. package/src/aaveV3/merit.ts +94 -94
  24. package/src/aaveV3/merkl.ts +74 -74
  25. package/src/claiming/aaveV3.ts +154 -154
  26. package/src/claiming/compV3.ts +22 -22
  27. package/src/claiming/index.ts +12 -12
  28. package/src/claiming/king.ts +66 -66
  29. package/src/claiming/morphoBlue.ts +118 -118
  30. package/src/claiming/spark.ts +225 -225
  31. package/src/compoundV2/index.ts +244 -244
  32. package/src/compoundV3/index.ts +274 -274
  33. package/src/config/contracts.ts +1228 -1228
  34. package/src/constants/index.ts +10 -10
  35. package/src/contracts.ts +120 -120
  36. package/src/curveUsd/index.ts +250 -250
  37. package/src/eulerV2/index.ts +324 -324
  38. package/src/exchange/index.ts +25 -25
  39. package/src/fluid/index.ts +1638 -1638
  40. package/src/helpers/aaveHelpers/index.ts +185 -183
  41. package/src/helpers/compoundHelpers/index.ts +283 -283
  42. package/src/helpers/curveUsdHelpers/index.ts +40 -40
  43. package/src/helpers/eulerHelpers/index.ts +222 -222
  44. package/src/helpers/fluidHelpers/index.ts +326 -326
  45. package/src/helpers/index.ts +10 -10
  46. package/src/helpers/liquityV2Helpers/index.ts +82 -82
  47. package/src/helpers/llamaLendHelpers/index.ts +53 -53
  48. package/src/helpers/makerHelpers/index.ts +52 -52
  49. package/src/helpers/morphoBlueHelpers/index.ts +396 -396
  50. package/src/helpers/sparkHelpers/index.ts +155 -155
  51. package/src/index.ts +47 -47
  52. package/src/liquity/index.ts +159 -159
  53. package/src/liquityV2/index.ts +657 -657
  54. package/src/llamaLend/index.ts +305 -305
  55. package/src/maker/index.ts +223 -223
  56. package/src/markets/aave/index.ts +116 -116
  57. package/src/markets/aave/marketAssets.ts +49 -49
  58. package/src/markets/compound/index.ts +227 -227
  59. package/src/markets/compound/marketsAssets.ts +90 -90
  60. package/src/markets/curveUsd/index.ts +69 -69
  61. package/src/markets/euler/index.ts +26 -26
  62. package/src/markets/fluid/index.ts +2456 -2456
  63. package/src/markets/index.ts +25 -25
  64. package/src/markets/liquityV2/index.ts +102 -102
  65. package/src/markets/llamaLend/contractAddresses.ts +141 -141
  66. package/src/markets/llamaLend/index.ts +235 -235
  67. package/src/markets/morphoBlue/index.ts +895 -895
  68. package/src/markets/spark/index.ts +29 -29
  69. package/src/markets/spark/marketAssets.ts +11 -11
  70. package/src/moneymarket/moneymarketCommonService.ts +80 -80
  71. package/src/morphoBlue/index.ts +274 -274
  72. package/src/portfolio/index.ts +570 -570
  73. package/src/services/priceService.ts +159 -159
  74. package/src/services/utils.ts +99 -99
  75. package/src/services/viem.ts +32 -32
  76. package/src/setup.ts +8 -8
  77. package/src/spark/index.ts +445 -445
  78. package/src/staking/eligibility.ts +59 -60
  79. package/src/staking/index.ts +1 -1
  80. package/src/staking/staking.ts +170 -170
  81. package/src/types/aave.ts +189 -189
  82. package/src/types/claiming.ts +109 -109
  83. package/src/types/common.ts +105 -105
  84. package/src/types/compound.ts +136 -136
  85. package/src/types/curveUsd.ts +121 -121
  86. package/src/types/euler.ts +175 -175
  87. package/src/types/fluid.ts +448 -448
  88. package/src/types/index.ts +13 -13
  89. package/src/types/liquity.ts +30 -30
  90. package/src/types/liquityV2.ts +126 -126
  91. package/src/types/llamaLend.ts +159 -159
  92. package/src/types/maker.ts +63 -63
  93. package/src/types/merit.ts +1 -1
  94. package/src/types/merkl.ts +70 -70
  95. package/src/types/morphoBlue.ts +194 -194
  96. package/src/types/portfolio.ts +60 -60
  97. package/src/types/spark.ts +135 -135
  98. package/src/umbrella/index.ts +69 -69
  99. package/src/umbrella/umbrellaUtils.ts +29 -29
  100. package/CLAUDE.md +0 -32
@@ -1,94 +1,94 @@
1
-
2
- import { DEFAULT_TIMEOUT } from '../services/utils';
3
- import { NetworkNumber } from '../types/common';
4
- import { aprToApy } from '../moneymarket';
5
- import { AaveVersions, MeritTokenRewardMap } from '../types';
6
-
7
- /**
8
- * Maps API keys to reward data & actions - hardcoded and needs to be maintained actively.
9
- * Mapping based on Aave interface implementation: https://github.com/aave/interface/blob/main/src/hooks/useMeritIncentives.ts
10
- * Active campaigns found here: https://apps.aavechan.com/merit
11
- */
12
- const MERIT_DATA_MAP:
13
- Record<
14
- NetworkNumber,
15
- Partial<Record<
16
- AaveVersions,
17
- Record<string, {
18
- rewardTokenSymbol: string;
19
- action: 'supply' | 'borrow' | 'stake';
20
- message?: string;
21
- supplyTokens?: string[],
22
- borrowTokens?: string[],
23
- }>
24
- >>
25
- > = {
26
- [NetworkNumber.Eth]: {
27
- [AaveVersions.AaveV3]: {
28
- 'ethereum-supply-ethx': { rewardTokenSymbol: 'SD', action: 'supply', supplyTokens: ['ETHx'] },
29
- 'ethereum-supply-rlusd': { rewardTokenSymbol: 'aEthRLUSD', action: 'supply', supplyTokens: ['RLUSD'] },
30
- // Campaign disabled here as it's present on Merkl API:
31
- // 'ethereum-borrow-eurc': { rewardTokenSymbol: 'aEthEURC', action: 'borrow', borrowTokens: ['EURC'] },
32
- },
33
- [AaveVersions.AaveV3Lido]: {},
34
- [AaveVersions.AaveV3Etherfi]: {},
35
- },
36
- [NetworkNumber.Arb]: {
37
- [AaveVersions.AaveV3]: {},
38
- },
39
- [NetworkNumber.Opt]: {
40
- [AaveVersions.AaveV3]: {},
41
- },
42
- [NetworkNumber.Base]: {
43
- [AaveVersions.AaveV3]: {
44
- 'base-borrow-usdc': { rewardTokenSymbol: 'USDC', action: 'borrow', borrowTokens: ['USDC'] },
45
- 'base-borrow-gho': { rewardTokenSymbol: 'GHO', action: 'borrow', borrowTokens: ['GHO'] },
46
- 'base-borrow-eurc': { rewardTokenSymbol: 'EURC', action: 'borrow', borrowTokens: ['EURC'] },
47
- },
48
- },
49
- [NetworkNumber.Linea]: {
50
- [AaveVersions.AaveV3]: {},
51
- },
52
- };
53
-
54
- /**
55
- * Fetches merit rewards data from Aave API
56
- */
57
- export const fetchMeritRewardsData = async (): Promise<Record<string, number | null>> => {
58
- try {
59
- const response = await fetch('https://apps.aavechan.com/api/merit/aprs', {
60
- signal: AbortSignal.timeout(DEFAULT_TIMEOUT),
61
- });
62
- const data = await response.json();
63
- return data.currentAPR.actionsAPR as Record<string, number | null>;
64
- } catch (error) {
65
- console.error('Failed to fetch merit rewards data:', error);
66
- return {};
67
- }
68
- };
69
-
70
- export const getMeritCampaigns = async (chainId: NetworkNumber, market: AaveVersions): Promise<MeritTokenRewardMap> => {
71
- const meritData = await fetchMeritRewardsData();
72
- const relevantCampaigns = {
73
- supply: {},
74
- borrow: {},
75
- } as MeritTokenRewardMap;
76
- Object.entries(MERIT_DATA_MAP[chainId]?.[market] || {})
77
- .filter(([key, rewardData]) => !!meritData[key])
78
- .forEach(([key, rewardData]) => {
79
- const apr = meritData[key]!;
80
- if (!apr) return;
81
- const reward = {
82
- rewardTokenSymbol: rewardData.rewardTokenSymbol,
83
- apy: aprToApy(apr).toString(),
84
- description: `Eligible for Merit rewards in ${rewardData.rewardTokenSymbol}. ${rewardData.message ? `\n${rewardData.message}` : ''}`,
85
- };
86
- rewardData.supplyTokens?.forEach(token => {
87
- relevantCampaigns.supply[token] = reward;
88
- });
89
- rewardData.borrowTokens?.forEach(token => {
90
- relevantCampaigns.borrow[token] = reward;
91
- });
92
- });
93
- return relevantCampaigns;
94
- };
1
+
2
+ import { DEFAULT_TIMEOUT } from '../services/utils';
3
+ import { NetworkNumber } from '../types/common';
4
+ import { aprToApy } from '../moneymarket';
5
+ import { AaveVersions, MeritTokenRewardMap } from '../types';
6
+
7
+ /**
8
+ * Maps API keys to reward data & actions - hardcoded and needs to be maintained actively.
9
+ * Mapping based on Aave interface implementation: https://github.com/aave/interface/blob/main/src/hooks/useMeritIncentives.ts
10
+ * Active campaigns found here: https://apps.aavechan.com/merit
11
+ */
12
+ const MERIT_DATA_MAP:
13
+ Record<
14
+ NetworkNumber,
15
+ Partial<Record<
16
+ AaveVersions,
17
+ Record<string, {
18
+ rewardTokenSymbol: string;
19
+ action: 'supply' | 'borrow' | 'stake';
20
+ message?: string;
21
+ supplyTokens?: string[],
22
+ borrowTokens?: string[],
23
+ }>
24
+ >>
25
+ > = {
26
+ [NetworkNumber.Eth]: {
27
+ [AaveVersions.AaveV3]: {
28
+ 'ethereum-supply-ethx': { rewardTokenSymbol: 'SD', action: 'supply', supplyTokens: ['ETHx'] },
29
+ 'ethereum-supply-rlusd': { rewardTokenSymbol: 'aEthRLUSD', action: 'supply', supplyTokens: ['RLUSD'] },
30
+ // Campaign disabled here as it's present on Merkl API:
31
+ // 'ethereum-borrow-eurc': { rewardTokenSymbol: 'aEthEURC', action: 'borrow', borrowTokens: ['EURC'] },
32
+ },
33
+ [AaveVersions.AaveV3Lido]: {},
34
+ [AaveVersions.AaveV3Etherfi]: {},
35
+ },
36
+ [NetworkNumber.Arb]: {
37
+ [AaveVersions.AaveV3]: {},
38
+ },
39
+ [NetworkNumber.Opt]: {
40
+ [AaveVersions.AaveV3]: {},
41
+ },
42
+ [NetworkNumber.Base]: {
43
+ [AaveVersions.AaveV3]: {
44
+ 'base-borrow-usdc': { rewardTokenSymbol: 'USDC', action: 'borrow', borrowTokens: ['USDC'] },
45
+ 'base-borrow-gho': { rewardTokenSymbol: 'GHO', action: 'borrow', borrowTokens: ['GHO'] },
46
+ 'base-borrow-eurc': { rewardTokenSymbol: 'EURC', action: 'borrow', borrowTokens: ['EURC'] },
47
+ },
48
+ },
49
+ [NetworkNumber.Linea]: {
50
+ [AaveVersions.AaveV3]: {},
51
+ },
52
+ };
53
+
54
+ /**
55
+ * Fetches merit rewards data from Aave API
56
+ */
57
+ export const fetchMeritRewardsData = async (): Promise<Record<string, number | null>> => {
58
+ try {
59
+ const response = await fetch('https://apps.aavechan.com/api/merit/aprs', {
60
+ signal: AbortSignal.timeout(DEFAULT_TIMEOUT),
61
+ });
62
+ const data = await response.json();
63
+ return data.currentAPR.actionsAPR as Record<string, number | null>;
64
+ } catch (error) {
65
+ console.error('Failed to fetch merit rewards data:', error);
66
+ return {};
67
+ }
68
+ };
69
+
70
+ export const getMeritCampaigns = async (chainId: NetworkNumber, market: AaveVersions): Promise<MeritTokenRewardMap> => {
71
+ const meritData = await fetchMeritRewardsData();
72
+ const relevantCampaigns = {
73
+ supply: {},
74
+ borrow: {},
75
+ } as MeritTokenRewardMap;
76
+ Object.entries(MERIT_DATA_MAP[chainId]?.[market] || {})
77
+ .filter(([key, rewardData]) => !!meritData[key])
78
+ .forEach(([key, rewardData]) => {
79
+ const apr = meritData[key]!;
80
+ if (!apr) return;
81
+ const reward = {
82
+ rewardTokenSymbol: rewardData.rewardTokenSymbol,
83
+ apy: aprToApy(apr).toString(),
84
+ description: `Eligible for Merit rewards in ${rewardData.rewardTokenSymbol}. ${rewardData.message ? `\n${rewardData.message}` : ''}`,
85
+ };
86
+ rewardData.supplyTokens?.forEach(token => {
87
+ relevantCampaigns.supply[token] = reward;
88
+ });
89
+ rewardData.borrowTokens?.forEach(token => {
90
+ relevantCampaigns.borrow[token] = reward;
91
+ });
92
+ });
93
+ return relevantCampaigns;
94
+ };
@@ -1,74 +1,74 @@
1
- import { aprToApy } from '../moneymarket';
2
- import { DEFAULT_TIMEOUT, wethToEth } from '../services/utils';
3
- import {
4
- MerkleRewardMap, MerklOpportunity, OpportunityAction, OpportunityStatus,
5
- } from '../types';
6
- import { EthAddress, NetworkNumber } from '../types/common';
7
-
8
- export const getAaveUnderlyingSymbol = (_symbol = '') => {
9
- let symbol = _symbol
10
- .replace(/^aEthLido/, '')
11
- .replace(/^aEthEtherFi/, '')
12
- .replace(/^aEth/, '')
13
- .replace(/^aArb/, '')
14
- .replace(/^aOpt/, '')
15
- .replace(/^aBas/, '')
16
- .replace(/^aLin/, '');
17
- if (symbol.startsWith('a')) symbol = symbol.slice(1);
18
- return wethToEth(symbol);
19
- };
20
-
21
- /**
22
- * aEthLidoUSDC -> aUSDC
23
- * USDC -> USDC
24
- */
25
- export const formatAaveAsset = (_symbol: string) => {
26
- if (_symbol.startsWith('a')) {
27
- return `a${getAaveUnderlyingSymbol(_symbol)}`;
28
- }
29
- return _symbol;
30
- };
31
-
32
- export const getMerkleCampaigns = async (chainId: NetworkNumber): Promise<MerkleRewardMap> => {
33
- try {
34
- const res = await fetch('https://api.merkl.xyz/v4/opportunities?mainProtocolId=aave', {
35
- signal: AbortSignal.timeout(DEFAULT_TIMEOUT),
36
- });
37
- if (!res.ok) throw new Error('Failed to fetch Merkle campaigns');
38
- const opportunities = await res.json() as MerklOpportunity[];
39
- const relevantOpportunities = opportunities
40
- .filter((o: MerklOpportunity) => o.chainId === chainId)
41
- .filter((o: MerklOpportunity) => o.status === OpportunityStatus.LIVE);
42
- return relevantOpportunities.reduce((acc, opportunity) => {
43
- const rewardToken = opportunity.rewardsRecord.breakdowns[0].token;
44
- const description = `Eligible for ${formatAaveAsset(rewardToken.symbol)} rewards through Merkl. ${opportunity.description ? `\n${opportunity.description}` : ''}`;
45
- if (opportunity.action === OpportunityAction.LEND && opportunity.explorerAddress) {
46
- const supplyAToken = opportunity.explorerAddress?.toLowerCase() as EthAddress;
47
- if (!acc[supplyAToken]) acc[supplyAToken] = {};
48
- acc[supplyAToken].supply = {
49
- apy: aprToApy(opportunity.apr),
50
- // rewardToken: rewardToken.address,
51
- rewardTokenSymbol: rewardToken.symbol,
52
- description,
53
- identifier: opportunity.identifier,
54
- };
55
- }
56
- if (opportunity.action === OpportunityAction.BORROW && opportunity.explorerAddress) {
57
- const borrowAToken = opportunity.explorerAddress?.toLowerCase() as EthAddress;
58
- if (!acc[borrowAToken]) acc[borrowAToken] = {};
59
- acc[borrowAToken].borrow = {
60
- apy: aprToApy(opportunity.apr),
61
- // rewardToken: rewardToken.address,
62
- rewardTokenSymbol: rewardToken.symbol,
63
- description,
64
- identifier: opportunity.identifier,
65
- };
66
- }
67
- return acc;
68
- }, {} as MerkleRewardMap);
69
- } catch (e) {
70
- console.error('Failed to fetch Merkle campaigns', e);
71
- return {};
72
- }
73
- };
74
-
1
+ import { aprToApy } from '../moneymarket';
2
+ import { DEFAULT_TIMEOUT, wethToEth } from '../services/utils';
3
+ import {
4
+ MerkleRewardMap, MerklOpportunity, OpportunityAction, OpportunityStatus,
5
+ } from '../types';
6
+ import { EthAddress, NetworkNumber } from '../types/common';
7
+
8
+ export const getAaveUnderlyingSymbol = (_symbol = '') => {
9
+ let symbol = _symbol
10
+ .replace(/^aEthLido/, '')
11
+ .replace(/^aEthEtherFi/, '')
12
+ .replace(/^aEth/, '')
13
+ .replace(/^aArb/, '')
14
+ .replace(/^aOpt/, '')
15
+ .replace(/^aBas/, '')
16
+ .replace(/^aLin/, '');
17
+ if (symbol.startsWith('a')) symbol = symbol.slice(1);
18
+ return wethToEth(symbol);
19
+ };
20
+
21
+ /**
22
+ * aEthLidoUSDC -> aUSDC
23
+ * USDC -> USDC
24
+ */
25
+ export const formatAaveAsset = (_symbol: string) => {
26
+ if (_symbol.startsWith('a')) {
27
+ return `a${getAaveUnderlyingSymbol(_symbol)}`;
28
+ }
29
+ return _symbol;
30
+ };
31
+
32
+ export const getMerkleCampaigns = async (chainId: NetworkNumber): Promise<MerkleRewardMap> => {
33
+ try {
34
+ const res = await fetch('https://api.merkl.xyz/v4/opportunities?mainProtocolId=aave', {
35
+ signal: AbortSignal.timeout(DEFAULT_TIMEOUT),
36
+ });
37
+ if (!res.ok) throw new Error('Failed to fetch Merkle campaigns');
38
+ const opportunities = await res.json() as MerklOpportunity[];
39
+ const relevantOpportunities = opportunities
40
+ .filter((o: MerklOpportunity) => o.chainId === chainId)
41
+ .filter((o: MerklOpportunity) => o.status === OpportunityStatus.LIVE);
42
+ return relevantOpportunities.reduce((acc, opportunity) => {
43
+ const rewardToken = opportunity.rewardsRecord.breakdowns[0].token;
44
+ const description = `Eligible for ${formatAaveAsset(rewardToken.symbol)} rewards through Merkl. ${opportunity.description ? `\n${opportunity.description}` : ''}`;
45
+ if (opportunity.action === OpportunityAction.LEND && opportunity.explorerAddress) {
46
+ const supplyAToken = opportunity.explorerAddress?.toLowerCase() as EthAddress;
47
+ if (!acc[supplyAToken]) acc[supplyAToken] = {};
48
+ acc[supplyAToken].supply = {
49
+ apy: aprToApy(opportunity.apr),
50
+ // rewardToken: rewardToken.address,
51
+ rewardTokenSymbol: rewardToken.symbol,
52
+ description,
53
+ identifier: opportunity.identifier,
54
+ };
55
+ }
56
+ if (opportunity.action === OpportunityAction.BORROW && opportunity.explorerAddress) {
57
+ const borrowAToken = opportunity.explorerAddress?.toLowerCase() as EthAddress;
58
+ if (!acc[borrowAToken]) acc[borrowAToken] = {};
59
+ acc[borrowAToken].borrow = {
60
+ apy: aprToApy(opportunity.apr),
61
+ // rewardToken: rewardToken.address,
62
+ rewardTokenSymbol: rewardToken.symbol,
63
+ description,
64
+ identifier: opportunity.identifier,
65
+ };
66
+ }
67
+ return acc;
68
+ }, {} as MerkleRewardMap);
69
+ } catch (e) {
70
+ console.error('Failed to fetch Merkle campaigns', e);
71
+ return {};
72
+ }
73
+ };
74
+
@@ -1,155 +1,155 @@
1
- import { Client } from 'viem';
2
- import Dec from 'decimal.js';
3
- import { EthAddress, NetworkNumber } from '../types/common';
4
- import { ClaimableToken, ClaimType } from '../types/claiming';
5
- import {
6
- AaveIncentiveDataProviderV3ContractViem,
7
- AaveRewardsControllerViem,
8
- } from '../contracts';
9
- import { compareAddresses, getEthAmountForDecimals } from '../services/utils';
10
- import { getAaveUnderlyingSymbol } from '../helpers/aaveHelpers';
11
-
12
- type AaveReward = {
13
- amount: string;
14
- symbol: string;
15
- underlyingAsset: string;
16
- rewardTokenAddress: string;
17
- aTokenAddresses: string[];
18
- };
19
-
20
- const mapAaveRewardsToClaimableTokens = (aaveRewards: AaveReward[], marketAddress: EthAddress, walletAddress: EthAddress) => aaveRewards.map(reward => ({
21
- symbol: reward.symbol,
22
- amount: reward.amount,
23
- claimType: ClaimType.AAVE_REWARDS as const,
24
- tokenAddress: reward.rewardTokenAddress as EthAddress,
25
- underlyingSymbol: reward.underlyingAsset,
26
- walletAddress,
27
- label: 'AAVE Rewards',
28
- additionalClaimFields: {
29
- marketAddress,
30
- aTokenAddresses: reward.aTokenAddresses,
31
- isAaveToken: reward.symbol.startsWith('a'),
32
- },
33
- }));
34
-
35
- export async function getUnclaimedRewardsForAllMarkets(
36
- provider: Client,
37
- network: NetworkNumber,
38
- walletAddress: EthAddress,
39
- marketAddress: EthAddress,
40
- ): Promise<ClaimableToken[]> {
41
- const contract = AaveIncentiveDataProviderV3ContractViem(provider, network);
42
- const tokensData = await contract.read.getUserReservesIncentivesData([marketAddress, walletAddress]);
43
- const allTokensDataArrays = tokensData.reduce((acc: any[], val) => {
44
- acc.push(val.aTokenIncentivesUserData.userRewardsInformation);
45
- acc.push(val.vTokenIncentivesUserData.userRewardsInformation);
46
- return acc;
47
- }, []);
48
- const allATokens = tokensData.reduce((acc, val) => {
49
- acc.push(val.aTokenIncentivesUserData.tokenAddress);
50
- acc.push(val.vTokenIncentivesUserData.tokenAddress);
51
- return acc;
52
- }, [] as string[]);
53
- // array of rewards for each market (aToken/vToken)
54
- // reward can be any token like wstETH, but also aToken like aWETH
55
- const aaveRewardsController = AaveRewardsControllerViem(provider, network);
56
- const rewardsPerAAsset = await Promise.all(allATokens.map(
57
- (token: string) => aaveRewardsController.read.getAllUserRewards([[token as EthAddress], walletAddress])));
58
-
59
- // match amounts to token symbol, parse decimal amounts
60
- const rewardsPerAAssetWithInfo = rewardsPerAAsset.map((rewardForAAsset, aaIndex) => {
61
- const rewardsList = rewardForAAsset[0];
62
- const amounts = rewardForAAsset[1];
63
-
64
- const rewardsDataArraysForAAsset = allTokensDataArrays[aaIndex];
65
- const aTokenAddress = allATokens[aaIndex];
66
- return rewardsList.map((rewardTokenAddress, rewardIndex) => {
67
- const dataArrIndex = rewardsDataArraysForAAsset.findIndex((arr: { rewardTokenAddress: string | undefined; }) => compareAddresses(arr.rewardTokenAddress, rewardTokenAddress));
68
- const amountWei = amounts[rewardIndex];
69
- const amount = getEthAmountForDecimals(amountWei.toString(), rewardsDataArraysForAAsset[dataArrIndex]?.rewardTokenDecimals);
70
- const symbol = rewardsDataArraysForAAsset[dataArrIndex]?.rewardTokenSymbol || '';
71
- const underlyingAsset = getAaveUnderlyingSymbol(symbol);
72
- return ({
73
- amount,
74
- symbol,
75
- underlyingAsset,
76
- rewardTokenAddress,
77
- aTokenAddress,
78
- });
79
- });
80
- });
81
-
82
- // sum all unclaimed rewards of all markets per each token
83
- // (e.g. how much awstETH is claimable in total from both aUSDC and awstETH markets)
84
- const totalUnclaimedPerRewardToken: Record<string, any> = {};
85
- rewardsPerAAssetWithInfo
86
- .flat()
87
- .forEach(({
88
- amount, symbol, underlyingAsset, rewardTokenAddress, aTokenAddress,
89
- }) => {
90
- if (+amount > 0) {
91
- if (!totalUnclaimedPerRewardToken[symbol]) {
92
- totalUnclaimedPerRewardToken[symbol] = {
93
- amount, symbol, underlyingAsset, rewardTokenAddress, aTokenAddresses: [aTokenAddress],
94
- };
95
- } else {
96
- totalUnclaimedPerRewardToken[symbol].amount =
97
- new Dec(totalUnclaimedPerRewardToken[symbol].amount).add(amount).toString();
98
- totalUnclaimedPerRewardToken[symbol].aTokenAddresses.push(aTokenAddress);
99
- }
100
- }
101
- }, []);
102
-
103
- return mapAaveRewardsToClaimableTokens(Object.values(totalUnclaimedPerRewardToken), marketAddress, walletAddress);
104
- }
105
-
106
- export async function getMeritUnclaimedRewards(account: EthAddress, network: NetworkNumber, acceptMorpho: boolean = true): Promise<ClaimableToken[]> {
107
- let data;
108
- try {
109
- const res = await fetch(`https://api.merkl.xyz/v4/users/${account}/rewards?chainId=${network}`,
110
- { signal: AbortSignal.timeout(3000) });
111
- data = await res.json();
112
- } catch (error) {
113
- console.error('External API Failure: Aave Merit', error);
114
- data = [];
115
- }
116
-
117
- const claimableTokens: ClaimableToken[] = [];
118
-
119
- data.forEach((item: { rewards: any[]; }) => {
120
- item.rewards.forEach(reward => {
121
- const {
122
- token,
123
- amount,
124
- claimed,
125
- proofs,
126
- } = reward;
127
-
128
- const isTokenMorpho = token.symbol === 'MORPHO';
129
- if (!token || !token.symbol || amount === '0' || (isTokenMorpho && !acceptMorpho)) return;
130
-
131
- const unclaimedAmount = new Dec(amount).minus(claimed || 0).toString();
132
- if (unclaimedAmount === '0') return;
133
-
134
- const unclaimed = getEthAmountForDecimals(unclaimedAmount, token.decimals);
135
-
136
- claimableTokens.push({
137
- claimType: ClaimType.AAVE_MERIT_REWARDS,
138
- amount: unclaimed,
139
- symbol: token.symbol,
140
- tokenAddress: token.address,
141
- walletAddress: account,
142
- label: 'AAVE Merit Rewards',
143
- underlyingSymbol: getAaveUnderlyingSymbol(token.symbol),
144
- additionalClaimFields: {
145
- accumulated: amount,
146
- proof: proofs,
147
- decimals: token.decimals,
148
- unclaimed: unclaimedAmount,
149
- },
150
- });
151
- });
152
- });
153
-
154
- return claimableTokens;
1
+ import { Client } from 'viem';
2
+ import Dec from 'decimal.js';
3
+ import { EthAddress, NetworkNumber } from '../types/common';
4
+ import { ClaimableToken, ClaimType } from '../types/claiming';
5
+ import {
6
+ AaveIncentiveDataProviderV3ContractViem,
7
+ AaveRewardsControllerViem,
8
+ } from '../contracts';
9
+ import { compareAddresses, getEthAmountForDecimals } from '../services/utils';
10
+ import { getAaveUnderlyingSymbol } from '../helpers/aaveHelpers';
11
+
12
+ type AaveReward = {
13
+ amount: string;
14
+ symbol: string;
15
+ underlyingAsset: string;
16
+ rewardTokenAddress: string;
17
+ aTokenAddresses: string[];
18
+ };
19
+
20
+ const mapAaveRewardsToClaimableTokens = (aaveRewards: AaveReward[], marketAddress: EthAddress, walletAddress: EthAddress) => aaveRewards.map(reward => ({
21
+ symbol: reward.symbol,
22
+ amount: reward.amount,
23
+ claimType: ClaimType.AAVE_REWARDS as const,
24
+ tokenAddress: reward.rewardTokenAddress as EthAddress,
25
+ underlyingSymbol: reward.underlyingAsset,
26
+ walletAddress,
27
+ label: 'AAVE Rewards',
28
+ additionalClaimFields: {
29
+ marketAddress,
30
+ aTokenAddresses: reward.aTokenAddresses,
31
+ isAaveToken: reward.symbol.startsWith('a'),
32
+ },
33
+ }));
34
+
35
+ export async function getUnclaimedRewardsForAllMarkets(
36
+ provider: Client,
37
+ network: NetworkNumber,
38
+ walletAddress: EthAddress,
39
+ marketAddress: EthAddress,
40
+ ): Promise<ClaimableToken[]> {
41
+ const contract = AaveIncentiveDataProviderV3ContractViem(provider, network);
42
+ const tokensData = await contract.read.getUserReservesIncentivesData([marketAddress, walletAddress]);
43
+ const allTokensDataArrays = tokensData.reduce((acc: any[], val) => {
44
+ acc.push(val.aTokenIncentivesUserData.userRewardsInformation);
45
+ acc.push(val.vTokenIncentivesUserData.userRewardsInformation);
46
+ return acc;
47
+ }, []);
48
+ const allATokens = tokensData.reduce((acc, val) => {
49
+ acc.push(val.aTokenIncentivesUserData.tokenAddress);
50
+ acc.push(val.vTokenIncentivesUserData.tokenAddress);
51
+ return acc;
52
+ }, [] as string[]);
53
+ // array of rewards for each market (aToken/vToken)
54
+ // reward can be any token like wstETH, but also aToken like aWETH
55
+ const aaveRewardsController = AaveRewardsControllerViem(provider, network);
56
+ const rewardsPerAAsset = await Promise.all(allATokens.map(
57
+ (token: string) => aaveRewardsController.read.getAllUserRewards([[token as EthAddress], walletAddress])));
58
+
59
+ // match amounts to token symbol, parse decimal amounts
60
+ const rewardsPerAAssetWithInfo = rewardsPerAAsset.map((rewardForAAsset, aaIndex) => {
61
+ const rewardsList = rewardForAAsset[0];
62
+ const amounts = rewardForAAsset[1];
63
+
64
+ const rewardsDataArraysForAAsset = allTokensDataArrays[aaIndex];
65
+ const aTokenAddress = allATokens[aaIndex];
66
+ return rewardsList.map((rewardTokenAddress, rewardIndex) => {
67
+ const dataArrIndex = rewardsDataArraysForAAsset.findIndex((arr: { rewardTokenAddress: string | undefined; }) => compareAddresses(arr.rewardTokenAddress, rewardTokenAddress));
68
+ const amountWei = amounts[rewardIndex];
69
+ const amount = getEthAmountForDecimals(amountWei.toString(), rewardsDataArraysForAAsset[dataArrIndex]?.rewardTokenDecimals);
70
+ const symbol = rewardsDataArraysForAAsset[dataArrIndex]?.rewardTokenSymbol || '';
71
+ const underlyingAsset = getAaveUnderlyingSymbol(symbol);
72
+ return ({
73
+ amount,
74
+ symbol,
75
+ underlyingAsset,
76
+ rewardTokenAddress,
77
+ aTokenAddress,
78
+ });
79
+ });
80
+ });
81
+
82
+ // sum all unclaimed rewards of all markets per each token
83
+ // (e.g. how much awstETH is claimable in total from both aUSDC and awstETH markets)
84
+ const totalUnclaimedPerRewardToken: Record<string, any> = {};
85
+ rewardsPerAAssetWithInfo
86
+ .flat()
87
+ .forEach(({
88
+ amount, symbol, underlyingAsset, rewardTokenAddress, aTokenAddress,
89
+ }) => {
90
+ if (+amount > 0) {
91
+ if (!totalUnclaimedPerRewardToken[symbol]) {
92
+ totalUnclaimedPerRewardToken[symbol] = {
93
+ amount, symbol, underlyingAsset, rewardTokenAddress, aTokenAddresses: [aTokenAddress],
94
+ };
95
+ } else {
96
+ totalUnclaimedPerRewardToken[symbol].amount =
97
+ new Dec(totalUnclaimedPerRewardToken[symbol].amount).add(amount).toString();
98
+ totalUnclaimedPerRewardToken[symbol].aTokenAddresses.push(aTokenAddress);
99
+ }
100
+ }
101
+ }, []);
102
+
103
+ return mapAaveRewardsToClaimableTokens(Object.values(totalUnclaimedPerRewardToken), marketAddress, walletAddress);
104
+ }
105
+
106
+ export async function getMeritUnclaimedRewards(account: EthAddress, network: NetworkNumber, acceptMorpho: boolean = true): Promise<ClaimableToken[]> {
107
+ let data;
108
+ try {
109
+ const res = await fetch(`https://api.merkl.xyz/v4/users/${account}/rewards?chainId=${network}`,
110
+ { signal: AbortSignal.timeout(3000) });
111
+ data = await res.json();
112
+ } catch (error) {
113
+ console.error('External API Failure: Aave Merit', error);
114
+ data = [];
115
+ }
116
+
117
+ const claimableTokens: ClaimableToken[] = [];
118
+
119
+ data.forEach((item: { rewards: any[]; }) => {
120
+ item.rewards.forEach(reward => {
121
+ const {
122
+ token,
123
+ amount,
124
+ claimed,
125
+ proofs,
126
+ } = reward;
127
+
128
+ const isTokenMorpho = token.symbol === 'MORPHO';
129
+ if (!token || !token.symbol || amount === '0' || (isTokenMorpho && !acceptMorpho)) return;
130
+
131
+ const unclaimedAmount = new Dec(amount).minus(claimed || 0).toString();
132
+ if (unclaimedAmount === '0') return;
133
+
134
+ const unclaimed = getEthAmountForDecimals(unclaimedAmount, token.decimals);
135
+
136
+ claimableTokens.push({
137
+ claimType: ClaimType.AAVE_MERIT_REWARDS,
138
+ amount: unclaimed,
139
+ symbol: token.symbol,
140
+ tokenAddress: token.address,
141
+ walletAddress: account,
142
+ label: 'AAVE Merit Rewards',
143
+ underlyingSymbol: getAaveUnderlyingSymbol(token.symbol),
144
+ additionalClaimFields: {
145
+ accumulated: amount,
146
+ proof: proofs,
147
+ decimals: token.decimals,
148
+ unclaimed: unclaimedAmount,
149
+ },
150
+ });
151
+ });
152
+ });
153
+
154
+ return claimableTokens;
155
155
  }