@defisaver/positions-sdk 2.1.104 → 2.1.106

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 (43) hide show
  1. package/cjs/aaveV4/index.js +53 -20
  2. package/cjs/claiming/aaveV3.d.ts +1 -1
  3. package/cjs/claiming/aaveV3.js +3 -4
  4. package/cjs/claiming/index.d.ts +1 -2
  5. package/cjs/claiming/index.js +1 -3
  6. package/cjs/config/contracts.d.ts +0 -214
  7. package/cjs/config/contracts.js +1 -6
  8. package/cjs/helpers/morphoBlueHelpers/index.d.ts +0 -1
  9. package/cjs/helpers/morphoBlueHelpers/index.js +27 -32
  10. package/cjs/portfolio/index.js +0 -27
  11. package/cjs/types/aaveV4.d.ts +9 -0
  12. package/cjs/types/claiming.d.ts +1 -13
  13. package/cjs/types/claiming.js +0 -2
  14. package/cjs/types/morphoBlue.d.ts +2 -3
  15. package/esm/aaveV4/index.js +53 -20
  16. package/esm/claiming/aaveV3.d.ts +1 -1
  17. package/esm/claiming/aaveV3.js +3 -4
  18. package/esm/claiming/index.d.ts +1 -2
  19. package/esm/claiming/index.js +1 -2
  20. package/esm/config/contracts.d.ts +0 -214
  21. package/esm/config/contracts.js +0 -4
  22. package/esm/helpers/morphoBlueHelpers/index.d.ts +0 -1
  23. package/esm/helpers/morphoBlueHelpers/index.js +27 -31
  24. package/esm/portfolio/index.js +0 -27
  25. package/esm/types/aaveV4.d.ts +9 -0
  26. package/esm/types/claiming.d.ts +1 -13
  27. package/esm/types/claiming.js +0 -2
  28. package/esm/types/morphoBlue.d.ts +2 -3
  29. package/package.json +1 -1
  30. package/src/aaveV4/index.ts +48 -20
  31. package/src/claiming/aaveV3.ts +2 -3
  32. package/src/claiming/index.ts +0 -2
  33. package/src/config/contracts.ts +0 -4
  34. package/src/helpers/morphoBlueHelpers/index.ts +29 -32
  35. package/src/portfolio/index.ts +0 -25
  36. package/src/types/aaveV4.ts +9 -0
  37. package/src/types/claiming.ts +0 -15
  38. package/src/types/morphoBlue.ts +2 -3
  39. package/cjs/claiming/morphoBlue.d.ts +0 -5
  40. package/cjs/claiming/morphoBlue.js +0 -113
  41. package/esm/claiming/morphoBlue.d.ts +0 -5
  42. package/esm/claiming/morphoBlue.js +0 -105
  43. package/src/claiming/morphoBlue.ts +0 -119
@@ -12,7 +12,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
13
  };
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.getMorphoUnderlyingSymbol = exports.getRewardsForMarket = exports.getReallocation = exports.getLiquidityToAllocate = exports.getReallocatableLiquidity = exports.getApyAfterValuesEstimation = exports.getBorrowRate = exports.getSupplyRate = exports.getMorphoBlueAggregatedPositionData = void 0;
15
+ exports.getRewardsForMarket = exports.getReallocation = exports.getLiquidityToAllocate = exports.getReallocatableLiquidity = exports.getApyAfterValuesEstimation = exports.getBorrowRate = exports.getSupplyRate = exports.getMorphoBlueAggregatedPositionData = void 0;
16
16
  const decimal_js_1 = __importDefault(require("decimal.js"));
17
17
  const tokens_1 = require("@defisaver/tokens");
18
18
  const moneymarket_1 = require("../../moneymarket");
@@ -138,12 +138,13 @@ const getApyAfterValuesEstimation = (selectedMarket, actions, provider, network)
138
138
  return { borrowRate, supplyRate };
139
139
  });
140
140
  exports.getApyAfterValuesEstimation = getApyAfterValuesEstimation;
141
- const API_URL = 'https://blue-api.morpho.org/graphql';
141
+ const API_URL = 'https://api.morpho.org/graphql';
142
+ // Morpho Blue ACRM (Adaptive Curve IRM) always targets 90% utilization — protocol constant
143
+ const ACRM_TARGET_UTILIZATION = '900000000000000000';
142
144
  const MARKET_QUERY = `
143
- query MarketByUniqueKey($uniqueKey: String!, $chainId: Int!) {
144
- marketByUniqueKey(uniqueKey: $uniqueKey, chainId: $chainId) {
145
+ query MarketByUniqueKey($marketId: String!, $chainId: Int!) {
146
+ marketById(marketId: $marketId, chainId: $chainId) {
145
147
  reallocatableLiquidityAssets
146
- targetBorrowUtilization
147
148
  loanAsset {
148
149
  address
149
150
  decimals
@@ -160,8 +161,8 @@ const MARKET_QUERY = `
160
161
  address
161
162
  name
162
163
  }
163
- allocationMarket {
164
- uniqueKey
164
+ withdrawMarket {
165
+ marketId
165
166
  loanAsset {
166
167
  address
167
168
  }
@@ -185,14 +186,14 @@ const MARKET_QUERY = `
185
186
  address
186
187
  }
187
188
  irmAddress
188
- lltv
189
+ lltv
189
190
  }
190
191
  }
191
192
  `;
192
193
  const REWARDS_QUERY = `
193
- query MarketByUniqueKey($uniqueKey: String!, $chainId: Int!) {
194
- marketByUniqueKey(uniqueKey: $uniqueKey, chainId: $chainId) {
195
- uniqueKey
194
+ query MarketByUniqueKey($marketId: String!, $chainId: Int!) {
195
+ marketById(marketId: $marketId, chainId: $chainId) {
196
+ marketId
196
197
  state {
197
198
  rewards {
198
199
  amountPerSuppliedToken
@@ -221,17 +222,17 @@ const getReallocatableLiquidity = (marketId_1, ...args_1) => __awaiter(void 0, [
221
222
  headers: { 'Content-Type': 'application/json' },
222
223
  body: JSON.stringify({
223
224
  query: MARKET_QUERY,
224
- variables: { uniqueKey: marketId, chainId: network },
225
+ variables: { marketId, chainId: network },
225
226
  }),
226
227
  signal: AbortSignal.timeout(utils_1.LONGER_TIMEOUT),
227
228
  });
228
229
  const data = yield response.json();
229
- const marketData = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.marketByUniqueKey;
230
+ const marketData = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.marketById;
230
231
  if (!marketData)
231
232
  throw new Error('Market data not found');
232
233
  return {
233
234
  reallocatableLiquidity: marketData.reallocatableLiquidityAssets,
234
- targetBorrowUtilization: marketData.targetBorrowUtilization,
235
+ targetBorrowUtilization: ACRM_TARGET_UTILIZATION,
235
236
  };
236
237
  }
237
238
  catch (error) {
@@ -285,12 +286,12 @@ const getReallocation = (market_1, assetsData_1, amountToBorrow_1, ...args_1) =>
285
286
  headers: { 'Content-Type': 'application/json' },
286
287
  body: JSON.stringify({
287
288
  query: MARKET_QUERY,
288
- variables: { uniqueKey: marketId, chainId: network },
289
+ variables: { marketId, chainId: network },
289
290
  }),
290
291
  signal: AbortSignal.timeout(utils_1.LONGER_TIMEOUT),
291
292
  });
292
293
  const data = yield response.json();
293
- const marketData = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.marketByUniqueKey;
294
+ const marketData = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.marketById;
294
295
  if (!marketData)
295
296
  throw new Error('Market data not found');
296
297
  const loanAssetInfo = (0, tokens_1.getAssetInfoByAddress)(loanToken, network);
@@ -300,9 +301,9 @@ const getReallocation = (market_1, assetsData_1, amountToBorrow_1, ...args_1) =>
300
301
  const newTotalBorrowAssets = new decimal_js_1.default(totalBorrowWei).add(amountToBorrow).toString();
301
302
  const newUtil = new decimal_js_1.default(newTotalBorrowAssets).div(totalSupplyWei).toString();
302
303
  const newUtilScaled = new decimal_js_1.default(newUtil).mul(1e18).toString();
303
- if (new decimal_js_1.default(newUtilScaled).lt(marketData.targetBorrowUtilization))
304
+ if (new decimal_js_1.default(newUtilScaled).lt(ACRM_TARGET_UTILIZATION))
304
305
  return { vaults: [], withdrawals: [] };
305
- const liquidityToAllocate = (0, exports.getLiquidityToAllocate)(amountToBorrow, totalBorrowWei, totalSupplyWei, marketData.targetBorrowUtilization, marketData.reallocatableLiquidityAssets);
306
+ const liquidityToAllocate = (0, exports.getLiquidityToAllocate)(amountToBorrow, totalBorrowWei, totalSupplyWei, ACRM_TARGET_UTILIZATION, marketData.reallocatableLiquidityAssets);
306
307
  const vaultTotalAssets = marketData.publicAllocatorSharedLiquidity.reduce((acc, item) => {
307
308
  const vaultAddress = item.vault.address;
308
309
  acc[vaultAddress] = new decimal_js_1.default(acc[vaultAddress] || '0').add(item.assets).toString();
@@ -324,14 +325,14 @@ const getReallocation = (market_1, assetsData_1, amountToBorrow_1, ...args_1) =>
324
325
  totalReallocated = new decimal_js_1.default(totalReallocated).add(amountToTake).toString();
325
326
  const withdrawal = [
326
327
  [
327
- item.allocationMarket.loanAsset.address,
328
- (_b = item.allocationMarket.collateralAsset) === null || _b === void 0 ? void 0 : _b.address,
329
- (_c = item.allocationMarket.oracle) === null || _c === void 0 ? void 0 : _c.address,
330
- item.allocationMarket.irmAddress,
331
- item.allocationMarket.lltv,
328
+ item.withdrawMarket.loanAsset.address,
329
+ (_b = item.withdrawMarket.collateralAsset) === null || _b === void 0 ? void 0 : _b.address,
330
+ (_c = item.withdrawMarket.oracle) === null || _c === void 0 ? void 0 : _c.address,
331
+ item.withdrawMarket.irmAddress,
332
+ item.withdrawMarket.lltv,
332
333
  ],
333
334
  amountToTake.toString(),
334
- item.allocationMarket.uniqueKey,
335
+ item.withdrawMarket.marketId,
335
336
  ];
336
337
  if (!withdrawalsPerVault[vaultAddress]) {
337
338
  withdrawalsPerVault[vaultAddress] = [];
@@ -359,11 +360,11 @@ const getRewardsForMarket = (marketId_1, ...args_1) => __awaiter(void 0, [market
359
360
  headers: { 'Content-Type': 'application/json' },
360
361
  body: JSON.stringify({
361
362
  query: REWARDS_QUERY,
362
- variables: { uniqueKey: marketId, chainId: network },
363
+ variables: { marketId, chainId: network },
363
364
  }),
364
365
  });
365
366
  const data = yield response.json();
366
- const marketData = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.marketByUniqueKey;
367
+ const marketData = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.marketById;
367
368
  if (!marketData)
368
369
  throw new Error('Market data not found');
369
370
  const morphoAssetInfo = (0, tokens_1.getAssetInfo)('MORPHO');
@@ -373,9 +374,3 @@ const getRewardsForMarket = (marketId_1, ...args_1) => __awaiter(void 0, [market
373
374
  return { supplyApy: (0, moneymarket_1.aprToApy)(supplyAprPercent), borrowApy: (0, moneymarket_1.aprToApy)(borrowAprPercent) };
374
375
  });
375
376
  exports.getRewardsForMarket = getRewardsForMarket;
376
- const getMorphoUnderlyingSymbol = (_symbol) => {
377
- if (_symbol === 'MORPHO Legacy')
378
- return 'MORPHO';
379
- return (0, utils_1.wethToEth)(_symbol);
380
- };
381
- exports.getMorphoUnderlyingSymbol = getMorphoUnderlyingSymbol;
@@ -37,7 +37,6 @@ const umbrella_1 = require("../umbrella");
37
37
  const aaveV3_2 = require("../claiming/aaveV3");
38
38
  const compV3_1 = require("../claiming/compV3");
39
39
  const spark_2 = require("../claiming/spark");
40
- const morphoBlue_2 = require("../claiming/morphoBlue");
41
40
  const king_1 = require("../claiming/king");
42
41
  const ethena_1 = require("../claiming/ethena");
43
42
  const aaveV4_1 = require("../aaveV4");
@@ -45,7 +44,6 @@ function getPortfolioData(provider_1, network_1, defaultProvider_1, addresses_1)
45
44
  return __awaiter(this, arguments, void 0, function* (provider, network, defaultProvider, addresses, isSim = false) {
46
45
  const isMainnet = network === common_1.NetworkNumber.Eth;
47
46
  const isFluidSupported = [common_1.NetworkNumber.Eth, common_1.NetworkNumber.Arb, common_1.NetworkNumber.Base, common_1.NetworkNumber.Plasma].includes(network);
48
- const isMorphoRewardsSupported = [common_1.NetworkNumber.Eth, common_1.NetworkNumber.Base].includes(network);
49
47
  const morphoMarkets = Object.values((0, markets_1.MorphoBlueMarkets)(network)).filter((market) => market.chainIds.includes(network));
50
48
  const compoundV3Markets = Object.values((0, markets_1.CompoundMarkets)(network)).filter((market) => market.chainIds.includes(network) && market.value !== types_1.CompoundVersions.CompoundV2);
51
49
  const sparkMarkets = Object.values((0, markets_1.SparkMarkets)(network)).filter((market) => market.chainIds.includes(network));
@@ -133,7 +131,6 @@ function getPortfolioData(provider_1, network_1, defaultProvider_1, addresses_1)
133
131
  spark: {},
134
132
  spk: {},
135
133
  king: {},
136
- morpho: {},
137
134
  ethena: {},
138
135
  };
139
136
  }
@@ -343,30 +340,6 @@ function getPortfolioData(provider_1, network_1, defaultProvider_1, addresses_1)
343
340
  rewardsData[address.toLowerCase()].aaveV3 = { error: `Error fetching Aave V3 rewards data for address ${address}`, data: null };
344
341
  }
345
342
  }))).flat(),
346
- // Batch Morpho Blue rewards
347
- (() => __awaiter(this, void 0, void 0, function* () {
348
- if (!isMorphoRewardsSupported)
349
- return;
350
- try {
351
- const morphoRewards = yield (0, morphoBlue_2.fetchMorphoBlueRewards)(client, network, addresses);
352
- for (const address of addresses) {
353
- const lowerAddress = address.toLowerCase();
354
- rewardsData[lowerAddress].morpho = {
355
- error: '',
356
- data: morphoRewards[lowerAddress] || [],
357
- };
358
- }
359
- }
360
- catch (error) {
361
- console.error('Error fetching Morpho Blue rewards data in batch:', error);
362
- for (const address of addresses) {
363
- rewardsData[address.toLowerCase()].morpho = {
364
- error: 'Error fetching Morpho Blue rewards data in batch',
365
- data: null,
366
- };
367
- }
368
- }
369
- }))(),
370
343
  // Batch Spark Airdrop rewards
371
344
  (() => __awaiter(this, void 0, void 0, function* () {
372
345
  try {
@@ -74,6 +74,8 @@ export interface AaveV4ReserveAssetOnChain {
74
74
  }
75
75
  export interface AaveV4ReserveAssetData {
76
76
  symbol: string;
77
+ /** Underlying token decimals as reported on-chain (independent of `@defisaver/tokens`). */
78
+ decimals: number;
77
79
  underlying: EthAddress;
78
80
  hub: EthAddress;
79
81
  hubName: string;
@@ -119,6 +121,11 @@ export interface AaveV4ReserveAssetData {
119
121
  hubLiquidity: string;
120
122
  premiumMultiplier: string;
121
123
  liquidityFee: string;
124
+ /**
125
+ * True when the underlying token is missing from `@defisaver/tokens` (placeholder `?` asset).
126
+ * The reserve is kept for read-only display, but amounts are zeroed and all actions are disabled.
127
+ */
128
+ isUnsupported?: boolean;
122
129
  }
123
130
  export type AaveV4AssetsData = Record<string, AaveV4ReserveAssetData>;
124
131
  export interface AaveV4UsedReserveAsset {
@@ -138,6 +145,8 @@ export interface AaveV4UsedReserveAsset {
138
145
  isBorrowed: boolean;
139
146
  collateral: boolean;
140
147
  collateralFactor: number;
148
+ /** True when the underlying token is missing from `@defisaver/tokens` (placeholder `?` asset). */
149
+ isUnsupported?: boolean;
141
150
  }
142
151
  export interface AaveV4AggregatedPositionData {
143
152
  suppliedUsd: string;
@@ -8,8 +8,6 @@ export declare enum ClaimType {
8
8
  COMPOUND_V3_COMP = "COMPOUND_V3_COMP",
9
9
  /** Rewards from Spark (wstETH only for now) */
10
10
  SPARK_REWARDS = "SPARK_REWARDS",
11
- /** Rewards from Morpho */
12
- MORPHO = "MORPHO",
13
11
  /** Rewards from King (prev LTR^2 - received for weETH holding) */
14
12
  KING_REWARDS = "KING_REWARDS",
15
13
  /** Spark Airdrop */
@@ -57,16 +55,6 @@ export type KingRewardsClaimableToken = _ClaimableTokenPartial & {
57
55
  merkleProofs: string[];
58
56
  };
59
57
  };
60
- export type MorphoClaimableToken = _ClaimableTokenPartial & {
61
- claimType: ClaimType.MORPHO;
62
- additionalClaimFields: {
63
- originalAmount: string;
64
- merkleProofs: string[];
65
- distributor: EthAddress;
66
- isLegacy: boolean;
67
- txData: string;
68
- };
69
- };
70
58
  export type CompoundV3CompClaimableToken = _ClaimableTokenPartial & {
71
59
  claimType: ClaimType.COMPOUND_V3_COMP;
72
60
  additionalClaimFields: {
@@ -93,5 +81,5 @@ export type SparkWstEthRewardsClaimableToken = _ClaimableTokenPartial & {
93
81
  export type EthenaAirdropClaimableToken = _ClaimableTokenPartial & {
94
82
  claimType: ClaimType.ETHENA_AIRDROP;
95
83
  };
96
- export type ClaimableToken = AaveRewardsClaimableToken | AaveMeritRewardsClaimableToken | CompoundV3CompClaimableToken | MorphoClaimableToken | SparkRewardsClaimableToken | KingRewardsClaimableToken | SparkAirdropClaimableToken | SparkWstEthRewardsClaimableToken | EthenaAirdropClaimableToken;
84
+ export type ClaimableToken = AaveRewardsClaimableToken | AaveMeritRewardsClaimableToken | CompoundV3CompClaimableToken | SparkRewardsClaimableToken | KingRewardsClaimableToken | SparkAirdropClaimableToken | SparkWstEthRewardsClaimableToken | EthenaAirdropClaimableToken;
97
85
  export {};
@@ -11,8 +11,6 @@ var ClaimType;
11
11
  ClaimType["COMPOUND_V3_COMP"] = "COMPOUND_V3_COMP";
12
12
  /** Rewards from Spark (wstETH only for now) */
13
13
  ClaimType["SPARK_REWARDS"] = "SPARK_REWARDS";
14
- /** Rewards from Morpho */
15
- ClaimType["MORPHO"] = "MORPHO";
16
14
  /** Rewards from King (prev LTR^2 - received for weETH holding) */
17
15
  ClaimType["KING_REWARDS"] = "KING_REWARDS";
18
16
  /** Spark Airdrop */
@@ -189,12 +189,12 @@ export interface MorphoBlueAllocationMarket {
189
189
  };
190
190
  irmAddress: string;
191
191
  lltv: string;
192
- uniqueKey: string;
192
+ marketId: string;
193
193
  }
194
194
  export interface MorphoBluePublicAllocatorItem {
195
195
  vault: MorphoBlueVault;
196
196
  assets: string;
197
- allocationMarket: MorphoBlueAllocationMarket;
197
+ withdrawMarket: MorphoBlueAllocationMarket;
198
198
  }
199
199
  export interface MorphoBlueAllocatorMarketState {
200
200
  borrowAssets: string;
@@ -202,7 +202,6 @@ export interface MorphoBlueAllocatorMarketState {
202
202
  }
203
203
  export interface MorphoBlueRealloactionMarketData {
204
204
  reallocatableLiquidityAssets: string;
205
- targetBorrowUtilization: string;
206
205
  publicAllocatorSharedLiquidity: MorphoBluePublicAllocatorItem[];
207
206
  state: MorphoBlueAllocatorMarketState;
208
207
  }
@@ -41,6 +41,9 @@ const fetchHubData = (viewContract, hubAddress) => __awaiter(void 0, void 0, voi
41
41
  const formatReserveAsset = (reserveAsset, hubAsset, reserveId, oracleDecimals, network) => __awaiter(void 0, void 0, void 0, function* () {
42
42
  var _a, _b, _c, _d, _e, _f;
43
43
  const assetInfo = getAssetInfoByAddress(reserveAsset.underlying, network);
44
+ // `@defisaver/tokens` returns a placeholder ('?', decimals NaN) when the underlying is not in the
45
+ // tokens package. Flag it so consumers can render it read-only instead of feeding NaN into amounts.
46
+ const isUnsupported = assetInfo.symbol === '?';
44
47
  const symbol = wethToEth(assetInfo.symbol);
45
48
  const hubInfo = getAaveV4HubByAddress(network, reserveAsset.hub);
46
49
  if (!hubInfo) {
@@ -87,10 +90,23 @@ const formatReserveAsset = (reserveAsset, hubAsset, reserveId, oracleDecimals, n
87
90
  const premiumMultiplier = totalDrawnShares.isZero() ? new Dec(1) : totalDrawnShares.add(totalPremiumShares).div(totalDrawnShares);
88
91
  const supplyApr = borrowApr.mul(hubUtilization).mul(premiumMultiplier).mul(new Dec(1).minus(liquidityFee));
89
92
  const utilization = hubUtilization.times(100).toString();
93
+ // For unsupported assets `symbol` is '?' (decimals NaN in `@defisaver/tokens`), so the
94
+ // symbol-based conversion would produce NaN. Fall back to the on-chain `decimals` so the reserve
95
+ // still shows correct amounts (and feeds correct USD/ratio/liquidation math) in read-only mode.
96
+ const toEth = (raw) => {
97
+ const rawStr = raw.toString();
98
+ if (isMaxUint(rawStr))
99
+ return rawStr;
100
+ if (isUnsupported)
101
+ return new Dec(rawStr || 0).div(new Dec(10).pow(reserveAsset.decimals)).toString();
102
+ return assetAmountInEth(rawStr, symbol);
103
+ };
90
104
  const hubLiquidityRaw = hubAsset.liquidity;
91
- const hubLiquidity = isMaxUint(hubLiquidityRaw.toString()) ? hubLiquidityRaw.toString() : assetAmountInEth(hubLiquidityRaw.toString(), symbol);
105
+ const hubLiquidity = toEth(hubLiquidityRaw.toString());
92
106
  return ({
93
107
  symbol,
108
+ decimals: reserveAsset.decimals,
109
+ isUnsupported,
94
110
  underlying: reserveAsset.underlying,
95
111
  hub: hubInfo.address,
96
112
  hubName: hubInfo === null || hubInfo === void 0 ? void 0 : hubInfo.label,
@@ -104,12 +120,12 @@ const formatReserveAsset = (reserveAsset, hubAsset, reserveId, oracleDecimals, n
104
120
  liquidationFee: new Dec(reserveAsset.liquidationFee).div(10000).toNumber(),
105
121
  maxLiquidationBonus: new Dec(reserveAsset.maxLiquidationBonus).div(10000).toNumber(),
106
122
  price: new Dec(reserveAsset.price).div(new Dec(10).pow(oracleDecimals)).toString(),
107
- totalSupplied: isMaxUint(totalSuppliedRaw.toString()) ? totalSuppliedRaw.toString() : assetAmountInEth(totalSuppliedRaw.toString(), symbol),
108
- totalDrawn: isMaxUint(totalDrawnRaw.toString()) ? totalDrawnRaw.toString() : assetAmountInEth(totalDrawnRaw.toString(), symbol),
109
- totalPremium: isMaxUint(totalPremiumRaw.toString()) ? totalPremiumRaw.toString() : assetAmountInEth(totalPremiumRaw.toString(), symbol),
110
- totalDebt: isMaxUint(totalDebtRaw.toString()) ? totalDebtRaw.toString() : assetAmountInEth(totalDebtRaw.toString(), symbol),
111
- supplyCap: isMaxUint(supplyCapRaw.toString()) ? supplyCapRaw.toString() : assetAmountInEth(supplyCapRaw.toString(), symbol),
112
- borrowCap: isMaxUint(borrowCapRaw.toString()) ? borrowCapRaw.toString() : assetAmountInEth(borrowCapRaw.toString(), symbol),
123
+ totalSupplied: toEth(totalSuppliedRaw.toString()),
124
+ totalDrawn: toEth(totalDrawnRaw.toString()),
125
+ totalPremium: toEth(totalPremiumRaw.toString()),
126
+ totalDebt: toEth(totalDebtRaw.toString()),
127
+ supplyCap: toEth(supplyCapRaw.toString()),
128
+ borrowCap: toEth(borrowCapRaw.toString()),
113
129
  spokeActive: reserveAsset.spokeActive,
114
130
  spokeHalted: reserveAsset.spokeHalted,
115
131
  drawnRate: drawnRate.toString(),
@@ -117,10 +133,10 @@ const formatReserveAsset = (reserveAsset, hubAsset, reserveId, oracleDecimals, n
117
133
  supplyRate: aprToApy(supplyApr.toString()),
118
134
  supplyIncentives,
119
135
  borrowIncentives,
120
- canBeBorrowed: reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused && !reserveAsset.frozen && reserveAsset.borrowable,
121
- canBeSupplied: reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused && !reserveAsset.frozen,
122
- canBeWithdrawn: reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused,
123
- canBePayBacked: reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused,
136
+ canBeBorrowed: !isUnsupported && reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused && !reserveAsset.frozen && reserveAsset.borrowable,
137
+ canBeSupplied: !isUnsupported && reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused && !reserveAsset.frozen,
138
+ canBeWithdrawn: !isUnsupported && reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused,
139
+ canBePayBacked: !isUnsupported && reserveAsset.spokeActive && !reserveAsset.spokeHalted && !reserveAsset.paused,
124
140
  utilization,
125
141
  hubLiquidity,
126
142
  premiumMultiplier: premiumMultiplier.toString(),
@@ -163,17 +179,33 @@ export function _getAaveV4AccountData(provider_1, network_1, spokeData_1, addres
163
179
  const healthFactorFromContract = new Dec(loanData.healthFactor.toString());
164
180
  const healthFactor = isMaxUint(healthFactorFromContract.toString()) ? 'Infinity' : healthFactorFromContract.div(1e18).toString();
165
181
  const usedAssets = loanData.reserves.reduce((acc, usedReserveAsset) => {
166
- const identifier = `${wethToEth(getAssetInfoByAddress(usedReserveAsset.underlying, network).symbol)}-${+usedReserveAsset.reserveId.toString()}`;
182
+ var _a, _b, _c, _d;
183
+ const assetInfo = getAssetInfoByAddress(usedReserveAsset.underlying, network);
184
+ const isUnsupported = assetInfo.symbol === '?';
185
+ const symbol = wethToEth(assetInfo.symbol);
186
+ const identifier = `${symbol}-${+usedReserveAsset.reserveId.toString()}`;
167
187
  const reserveData = spokeData.assetsData[identifier];
168
- const price = reserveData.price;
169
- const supplied = isMaxUint(usedReserveAsset.supplied.toString()) ? usedReserveAsset.supplied.toString() : assetAmountInEth(usedReserveAsset.supplied.toString(), reserveData.symbol);
170
- const drawn = isMaxUint(usedReserveAsset.drawn.toString()) ? usedReserveAsset.drawn.toString() : assetAmountInEth(usedReserveAsset.drawn.toString(), reserveData.symbol);
171
- const premium = isMaxUint(usedReserveAsset.premium.toString()) ? usedReserveAsset.premium.toString() : assetAmountInEth(usedReserveAsset.premium.toString(), reserveData.symbol);
172
- const borrowed = isMaxUint(usedReserveAsset.totalDebt.toString()) ? usedReserveAsset.totalDebt.toString() : assetAmountInEth(usedReserveAsset.totalDebt.toString(), reserveData.symbol);
188
+ const price = (_a = reserveData === null || reserveData === void 0 ? void 0 : reserveData.price) !== null && _a !== void 0 ? _a : '0';
189
+ // For unsupported assets the symbol-based conversion yields NaN, so use the on-chain decimals
190
+ // from the reserve data instead. If the reserve is missing entirely we can't convert, so fall
191
+ // back to '0' and keep the entry read-only.
192
+ const toEth = (raw) => {
193
+ if (isMaxUint(raw))
194
+ return raw;
195
+ if (!reserveData)
196
+ return '0';
197
+ if (isUnsupported)
198
+ return new Dec(raw || 0).div(new Dec(10).pow(reserveData.decimals)).toString();
199
+ return assetAmountInEth(raw, reserveData.symbol);
200
+ };
201
+ const supplied = toEth(usedReserveAsset.supplied.toString());
202
+ const drawn = toEth(usedReserveAsset.drawn.toString());
203
+ const premium = toEth(usedReserveAsset.premium.toString());
204
+ const borrowed = toEth(usedReserveAsset.totalDebt.toString());
173
205
  acc[identifier] = {
174
- symbol: reserveData.symbol,
175
- hubName: reserveData.hubName,
176
- assetId: reserveData.assetId,
206
+ symbol: (_b = reserveData === null || reserveData === void 0 ? void 0 : reserveData.symbol) !== null && _b !== void 0 ? _b : symbol,
207
+ hubName: (_c = reserveData === null || reserveData === void 0 ? void 0 : reserveData.hubName) !== null && _c !== void 0 ? _c : '',
208
+ assetId: (_d = reserveData === null || reserveData === void 0 ? void 0 : reserveData.assetId) !== null && _d !== void 0 ? _d : 0,
177
209
  reserveId: +usedReserveAsset.reserveId.toString(),
178
210
  supplied,
179
211
  suppliedUsd: new Dec(supplied).mul(price).toString(),
@@ -187,6 +219,7 @@ export function _getAaveV4AccountData(provider_1, network_1, spokeData_1, addres
187
219
  isBorrowed: usedReserveAsset.isBorrowing,
188
220
  collateral: usedReserveAsset.isUsingAsCollateral,
189
221
  collateralFactor: new Dec(usedReserveAsset.collateralFactor).div(10000).toNumber(),
222
+ isUnsupported: isUnsupported || !reserveData,
190
223
  };
191
224
  return acc;
192
225
  }, {});
@@ -2,4 +2,4 @@ import { Client } from 'viem';
2
2
  import { EthAddress, NetworkNumber } from '../types/common';
3
3
  import { ClaimableToken } from '../types/claiming';
4
4
  export declare function getUnclaimedRewardsForAllMarkets(provider: Client, network: NetworkNumber, walletAddress: EthAddress, marketAddress: EthAddress): Promise<ClaimableToken[]>;
5
- export declare function getMeritUnclaimedRewards(account: EthAddress, network: NetworkNumber, acceptMorpho?: boolean): Promise<ClaimableToken[]>;
5
+ export declare function getMeritUnclaimedRewards(account: EthAddress, network: NetworkNumber): Promise<ClaimableToken[]>;
@@ -88,8 +88,8 @@ export function getUnclaimedRewardsForAllMarkets(provider, network, walletAddres
88
88
  return mapAaveRewardsToClaimableTokens(Object.values(totalUnclaimedPerRewardToken), marketAddress, walletAddress);
89
89
  });
90
90
  }
91
- export function getMeritUnclaimedRewards(account_1, network_1) {
92
- return __awaiter(this, arguments, void 0, function* (account, network, acceptMorpho = true) {
91
+ export function getMeritUnclaimedRewards(account, network) {
92
+ return __awaiter(this, void 0, void 0, function* () {
93
93
  let data;
94
94
  try {
95
95
  const res = yield fetch(`https://api-merkl.angle.money/v4/users/${account}/rewards?chainId=${network}`, { signal: AbortSignal.timeout(3000) });
@@ -103,8 +103,7 @@ export function getMeritUnclaimedRewards(account_1, network_1) {
103
103
  data.forEach((item) => {
104
104
  item.rewards.forEach(reward => {
105
105
  const { token, amount, claimed, proofs, } = reward;
106
- const isTokenMorpho = token.symbol === 'MORPHO';
107
- if (!token || !token.symbol || amount === '0' || (isTokenMorpho && !acceptMorpho))
106
+ if (!token || !token.symbol || amount === '0')
108
107
  return;
109
108
  const unclaimedAmount = new Dec(amount).minus(claimed || 0).toString();
110
109
  if (unclaimedAmount === '0')
@@ -1,6 +1,5 @@
1
1
  import * as aaveV3Claim from './aaveV3';
2
2
  import * as compV3Claim from './compV3';
3
3
  import * as kingV3Claim from './king';
4
- import * as morphoBlueClaim from './morphoBlue';
5
4
  import * as sparkClaim from './spark';
6
- export { aaveV3Claim, compV3Claim, kingV3Claim, morphoBlueClaim, sparkClaim, };
5
+ export { aaveV3Claim, compV3Claim, kingV3Claim, sparkClaim, };
@@ -1,6 +1,5 @@
1
1
  import * as aaveV3Claim from './aaveV3';
2
2
  import * as compV3Claim from './compV3';
3
3
  import * as kingV3Claim from './king';
4
- import * as morphoBlueClaim from './morphoBlue';
5
4
  import * as sparkClaim from './spark';
6
- export { aaveV3Claim, compV3Claim, kingV3Claim, morphoBlueClaim, sparkClaim, };
5
+ export { aaveV3Claim, compV3Claim, kingV3Claim, sparkClaim, };