@defisaver/positions-sdk 2.1.151 → 2.1.152-shifter-v2-2-dev

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 (118) hide show
  1. package/cjs/aaveV2/index.js +2 -0
  2. package/cjs/claiming/compV3.js +0 -1
  3. package/cjs/config/contracts.d.ts +4 -0
  4. package/cjs/config/contracts.js +4 -0
  5. package/cjs/fluid/index.d.ts +5 -0
  6. package/cjs/fluid/index.js +36 -1
  7. package/cjs/helpers/aaveHelpers/index.js +3 -0
  8. package/cjs/helpers/aaveV4Helpers/index.js +1 -0
  9. package/cjs/helpers/compoundHelpers/index.js +2 -0
  10. package/cjs/helpers/curveUsdHelpers/index.js +2 -0
  11. package/cjs/helpers/fluidHelpers/index.js +1 -0
  12. package/cjs/helpers/liquityV2Helpers/index.js +1 -0
  13. package/cjs/helpers/llamaLendHelpers/index.js +2 -0
  14. package/cjs/helpers/morphoBlueHelpers/index.js +2 -0
  15. package/cjs/helpers/morphoMidnightHelpers/index.js +2 -0
  16. package/cjs/helpers/morphoMidnightHelpers/tenor.d.ts +6 -2
  17. package/cjs/helpers/morphoMidnightHelpers/tenor.js +5 -1
  18. package/cjs/helpers/sparkHelpers/index.js +1 -0
  19. package/cjs/liquity/index.js +8 -1
  20. package/cjs/maker/index.d.ts +7 -2
  21. package/cjs/maker/index.js +30 -10
  22. package/cjs/markets/index.d.ts +2 -1
  23. package/cjs/markets/index.js +4 -1
  24. package/cjs/markets/maker/index.d.ts +1 -0
  25. package/cjs/markets/maker/index.js +13 -0
  26. package/cjs/markets/morphoMidnight/index.d.ts +92 -10
  27. package/cjs/markets/morphoMidnight/index.js +519 -60
  28. package/cjs/morphoMidnight/index.js +11 -1
  29. package/cjs/portfolio/index.d.ts +5 -1
  30. package/cjs/portfolio/index.js +287 -0
  31. package/cjs/types/aave.d.ts +2 -0
  32. package/cjs/types/aaveV4.d.ts +1 -0
  33. package/cjs/types/compound.d.ts +2 -0
  34. package/cjs/types/fluid.d.ts +1 -0
  35. package/cjs/types/liquity.d.ts +1 -0
  36. package/cjs/types/liquityV2.d.ts +2 -0
  37. package/cjs/types/maker.d.ts +1 -0
  38. package/cjs/types/morphoBlue.d.ts +2 -0
  39. package/cjs/types/morphoMidnight.d.ts +58 -4
  40. package/cjs/types/morphoMidnight.js +45 -0
  41. package/cjs/types/portfolio.d.ts +26 -10
  42. package/cjs/types/spark.d.ts +2 -0
  43. package/esm/aaveV2/index.js +2 -0
  44. package/esm/claiming/compV3.js +0 -1
  45. package/esm/config/contracts.d.ts +4 -0
  46. package/esm/config/contracts.js +4 -0
  47. package/esm/fluid/index.d.ts +5 -0
  48. package/esm/fluid/index.js +33 -0
  49. package/esm/helpers/aaveHelpers/index.js +3 -0
  50. package/esm/helpers/aaveV4Helpers/index.js +1 -0
  51. package/esm/helpers/compoundHelpers/index.js +2 -0
  52. package/esm/helpers/curveUsdHelpers/index.js +2 -0
  53. package/esm/helpers/fluidHelpers/index.js +1 -0
  54. package/esm/helpers/liquityV2Helpers/index.js +1 -0
  55. package/esm/helpers/llamaLendHelpers/index.js +2 -0
  56. package/esm/helpers/morphoBlueHelpers/index.js +2 -0
  57. package/esm/helpers/morphoMidnightHelpers/index.js +2 -0
  58. package/esm/helpers/morphoMidnightHelpers/tenor.d.ts +6 -2
  59. package/esm/helpers/morphoMidnightHelpers/tenor.js +6 -2
  60. package/esm/helpers/sparkHelpers/index.js +1 -0
  61. package/esm/liquity/index.js +8 -1
  62. package/esm/maker/index.d.ts +7 -2
  63. package/esm/maker/index.js +29 -11
  64. package/esm/markets/index.d.ts +2 -1
  65. package/esm/markets/index.js +2 -1
  66. package/esm/markets/maker/index.d.ts +1 -0
  67. package/esm/markets/maker/index.js +10 -0
  68. package/esm/markets/morphoMidnight/index.d.ts +92 -10
  69. package/esm/markets/morphoMidnight/index.js +473 -59
  70. package/esm/morphoMidnight/index.js +11 -1
  71. package/esm/portfolio/index.d.ts +5 -1
  72. package/esm/portfolio/index.js +289 -3
  73. package/esm/types/aave.d.ts +2 -0
  74. package/esm/types/aaveV4.d.ts +1 -0
  75. package/esm/types/compound.d.ts +2 -0
  76. package/esm/types/fluid.d.ts +1 -0
  77. package/esm/types/liquity.d.ts +1 -0
  78. package/esm/types/liquityV2.d.ts +2 -0
  79. package/esm/types/maker.d.ts +1 -0
  80. package/esm/types/morphoBlue.d.ts +2 -0
  81. package/esm/types/morphoMidnight.d.ts +58 -4
  82. package/esm/types/morphoMidnight.js +45 -0
  83. package/esm/types/portfolio.d.ts +26 -10
  84. package/esm/types/spark.d.ts +2 -0
  85. package/package.json +1 -1
  86. package/src/aaveV2/index.ts +2 -0
  87. package/src/claiming/compV3.ts +0 -1
  88. package/src/config/contracts.ts +4 -0
  89. package/src/fluid/index.ts +40 -0
  90. package/src/helpers/aaveHelpers/index.ts +3 -0
  91. package/src/helpers/aaveV4Helpers/index.ts +1 -0
  92. package/src/helpers/compoundHelpers/index.ts +2 -0
  93. package/src/helpers/curveUsdHelpers/index.ts +2 -0
  94. package/src/helpers/fluidHelpers/index.ts +1 -0
  95. package/src/helpers/liquityV2Helpers/index.ts +1 -0
  96. package/src/helpers/llamaLendHelpers/index.ts +2 -0
  97. package/src/helpers/morphoBlueHelpers/index.ts +2 -0
  98. package/src/helpers/morphoMidnightHelpers/index.ts +2 -0
  99. package/src/helpers/morphoMidnightHelpers/tenor.ts +6 -2
  100. package/src/helpers/sparkHelpers/index.ts +1 -0
  101. package/src/liquity/index.ts +8 -1
  102. package/src/maker/index.ts +59 -28
  103. package/src/markets/index.ts +3 -1
  104. package/src/markets/maker/index.ts +10 -0
  105. package/src/markets/morphoMidnight/index.ts +724 -61
  106. package/src/morphoMidnight/index.ts +8 -1
  107. package/src/portfolio/index.ts +270 -2
  108. package/src/types/aave.ts +3 -0
  109. package/src/types/aaveV4.ts +1 -0
  110. package/src/types/compound.ts +2 -0
  111. package/src/types/fluid.ts +1 -0
  112. package/src/types/liquity.ts +2 -0
  113. package/src/types/liquityV2.ts +2 -0
  114. package/src/types/maker.ts +2 -0
  115. package/src/types/morphoBlue.ts +2 -0
  116. package/src/types/morphoMidnight.ts +60 -3
  117. package/src/types/portfolio.ts +31 -12
  118. package/src/types/spark.ts +2 -0
@@ -71,8 +71,12 @@ export async function _getMorphoMidnightMarketData(provider: Client, network: Ne
71
71
  borrowIncentives: [],
72
72
  };
73
73
 
74
+ // `collaterals` is the full on-chain set, so `i` is the index `prices` is keyed by. Hidden entries
75
+ // (curator vaults, the loan token itself) are skipped rather than filtered out beforehand, which would
76
+ // shift every later collateral onto the wrong price.
74
77
  const collateralSymbols: string[] = [];
75
78
  collaterals.forEach((coll, i) => {
79
+ if (coll.hidden) return;
76
80
  const collInfo = getAssetInfoByAddress(coll.token, network);
77
81
  const collSym = wethToEth(collInfo.symbol);
78
82
  collateralSymbols.push(collSym);
@@ -138,8 +142,10 @@ export async function _getMorphoMidnightAccountData(provider: Client, network: N
138
142
  borrowedUsd: new Dec(debt).mul(loanTokenData.price).toString(),
139
143
  };
140
144
 
141
- // positionInfo.collateral is index-aligned with the market's collateral set (0 where unused).
145
+ // positionInfo.collateral is index-aligned with the market's full on-chain collateral set (0 where
146
+ // unused), so hidden entries are skipped in place rather than filtered out first.
142
147
  collaterals.forEach((coll, i) => {
148
+ if (coll.hidden) return;
143
149
  const collInfo = getAssetInfoByAddress(coll.token, network);
144
150
  const collSym = wethToEth(collInfo.symbol);
145
151
  const rawAmount = positionInfo.collateral[i] ? positionInfo.collateral[i].toString() : '0';
@@ -228,6 +234,7 @@ export const _getMorphoMidnightAccountBalances = async (provider: Client, networ
228
234
 
229
235
  const collateral: Record<string, string> = {};
230
236
  collaterals.forEach((coll, i) => {
237
+ if (coll.hidden) return;
231
238
  const collInfo = getAssetInfoByAddress(coll.token, network);
232
239
  const rawAmount = positionInfo.collateral[i] ? positionInfo.collateral[i].toString() : '0';
233
240
  collateral[addressMapping ? collInfo.address.toLowerCase() : wethToEth(collInfo.symbol)] = assetAmountInEth(rawAmount, wethToEth(collInfo.symbol));
@@ -7,6 +7,7 @@ import {
7
7
  CrvUsdMarkets,
8
8
  LiquityV2Markets,
9
9
  LlamaLendMarkets,
10
+ MakerActiveIlks,
10
11
  MorphoBlueMarkets,
11
12
  MorphoMidnightMarkets,
12
13
  SparkMarkets,
@@ -27,6 +28,7 @@ import {
27
28
  LlamaLendGlobalMarketData,
28
29
  MorphoBlueMarketInfo,
29
30
  MorphoMidnightMarketInfo,
31
+ PortfolioMarketsData,
30
32
  PortfolioPositionsData,
31
33
  SparkMarketsData,
32
34
  } from '../types';
@@ -36,13 +38,13 @@ import { _getCurveUsdGlobalData, _getCurveUsdUserData } from '../curveUsd';
36
38
  import { _getLlamaLendGlobalData, _getLlamaLendUserData } from '../llamaLend';
37
39
  import { _getAaveV3AccountData, _getAaveV3MarketData, getStakeAaveData } from '../aaveV3';
38
40
  import { ZERO_ADDRESS } from '../constants';
39
- import { _getMakerCdpData, _getUserCdps } from '../maker';
41
+ import { _getMakerCdpData, _getMakerIlksData, _getUserCdps } from '../maker';
40
42
  import { _getAaveV2AccountData, _getAaveV2MarketsData } from '../aaveV2';
41
43
  import { _getCompoundV2AccountData, _getCompoundV2MarketsData } from '../compoundV2';
42
44
  import { getViemProvider } from '../services/viem';
43
45
  import { _getLiquityTroveInfo, getLiquityStakingData } from '../liquity';
44
46
  import { _getLiquityV2MarketData, getLiquitySAndYBold, getLiquityV2Staking } from '../liquityV2';
45
- import { _getAllUserEarnPositionsWithFTokens, _getUserPositionsPortfolio } from '../fluid';
47
+ import { _getAllFluidMarketDataPortfolio, _getAllUserEarnPositionsWithFTokens, _getUserPositionsPortfolio } from '../fluid';
46
48
  import { getUmbrellaData } from '../umbrella';
47
49
  import { getMerklUnclaimedRewards, getUnclaimedRewardsForAllMarkets } from '../claiming/aaveV3';
48
50
  import { getCompoundV3Rewards } from '../claiming/compV3';
@@ -596,4 +598,270 @@ export async function getPortfolioData(provider: EthereumProvider, network: Netw
596
598
  };
597
599
  }
598
600
 
601
+
602
+ export async function getShifterPortfolioData(provider: EthereumProvider, network: NetworkNumber, defaultProvider: EthereumProvider, addresses: EthAddress[], isSim = false): Promise<{
603
+ positions: PortfolioPositionsData;
604
+ markets: PortfolioMarketsData;
605
+ }> {
606
+ const isMainnet = network === NetworkNumber.Eth;
607
+ const isFluidSupported = [NetworkNumber.Eth, NetworkNumber.Arb, NetworkNumber.Base, NetworkNumber.Plasma].includes(network);
608
+
609
+ const morphoMarkets = Object.values(MorphoBlueMarkets(network)).filter((market) => market.chainIds.includes(network));
610
+ const morphoMidnightMarkets = Object.values(MorphoMidnightMarkets(network)).filter((market) => market.chainIds.includes(network));
611
+ const compoundV3Markets = Object.values(CompoundMarkets(network)).filter((market) => market.chainIds.includes(network) && market.value !== CompoundVersions.CompoundV2);
612
+ const sparkMarkets = Object.values(SparkMarkets(network)).filter((market) => market.chainIds.includes(network));
613
+ const aaveV3Markets = [AaveVersions.AaveV3, AaveVersions.AaveV3Lido, AaveVersions.AaveV3Etherfi].map((version) => AaveMarkets(network)[version]).filter((market) => market.chainIds.includes(network));
614
+ const aaveV2Markets = [AaveVersions.AaveV2].map((version) => AaveMarkets(network)[version]).filter((market) => market.chainIds.includes(network));
615
+ const compoundV2Markets = [CompoundVersions.CompoundV2].map((version) => CompoundMarkets(network)[version]).filter((market) => market.chainIds.includes(network));
616
+ const crvUsdMarkets = Object.values(CrvUsdMarkets(network)).filter((market) => market.chainIds.includes(network));
617
+ const llamaLendMarkets = [NetworkNumber.Eth, NetworkNumber.Arb].includes(network) ? Object.values(LlamaLendMarkets(network)).filter((market) => market.chainIds.includes(network)) : [];
618
+ const liquityV2Markets = [NetworkNumber.Eth].includes(network) ? Object.values(LiquityV2Markets(network)) : [];
619
+ const aaveV4Spokes = Object.values(AaveV4Spokes(network)).filter((market) => market.chainIds.includes(network));
620
+
621
+ const args: [NetworkNumber, any?] = [network, { batch: { multicall: { batchSize: isSim ? 2_000 : 2_500_000 } } }];
622
+ const client = getViemProvider(provider, ...args);
623
+ const defaultClient = getViemProvider(defaultProvider, ...args);
624
+
625
+ const markets: PortfolioMarketsData = {
626
+ morphoMarketsData: {},
627
+ morphoMidnightMarketsData: {},
628
+ compoundV3MarketsData: {},
629
+ sparkMarketsData: {},
630
+ aaveV3MarketsData: {},
631
+ aaveV2MarketsData: {},
632
+ compoundV2MarketsData: {},
633
+ crvUsdMarketsData: {},
634
+ llamaLendMarketsData: {},
635
+ liquityV2MarketsData: {},
636
+ aaveV4SpokesData: {},
637
+ fluidMarketsData: {},
638
+ makerMarketsData: {},
639
+ };
640
+ const makerCdps: Record<string, CdpInfo[]> = {};
641
+
642
+ const positions: PortfolioPositionsData = {};
643
+
644
+ for (const address of addresses) {
645
+ positions[address.toLowerCase() as EthAddress] = {
646
+ aaveV3: {},
647
+ aaveV4: {},
648
+ morphoBlue: {},
649
+ morphoMidnight: {},
650
+ compoundV3: {},
651
+ spark: {},
652
+ maker: {},
653
+ aaveV2: {},
654
+ compoundV2: {},
655
+ liquity: {},
656
+ crvUsd: {},
657
+ llamaLend: {},
658
+ fluid: {
659
+ error: '',
660
+ data: {},
661
+ },
662
+ };
663
+ }
664
+
665
+ await Promise.allSettled([
666
+ // === MARKET DATA (needs to be fetched first) ===
667
+ ...morphoMarkets.map(async (market) => {
668
+ markets.morphoMarketsData[market.value] = await _getMorphoBluePortfolioMarketData(client, network, market);
669
+ }),
670
+ ...morphoMidnightMarkets.map(async (market) => {
671
+ markets.morphoMidnightMarketsData[market.value] = await _getMorphoMidnightMarketData(client, network, market);
672
+ }),
673
+ ...compoundV3Markets.map(async (market) => {
674
+ markets.compoundV3MarketsData[market.value] = await _getCompoundV3MarketsData(client, network, market, defaultClient);
675
+ }),
676
+ ...sparkMarkets.map(async (market) => {
677
+ markets.sparkMarketsData[market.value] = await _getSparkMarketsData(client, network, market);
678
+ }),
679
+ ...aaveV3Markets.map(async (market) => {
680
+ markets.aaveV3MarketsData[market.value] = await _getAaveV3MarketData(client, network, market);
681
+ }),
682
+ ...aaveV4Spokes.map(async (spoke) => {
683
+ markets.aaveV4SpokesData[spoke.value] = await _getAaveV4SpokeData(client, network, spoke);
684
+ }),
685
+ ...aaveV2Markets.map(async (market) => {
686
+ markets.aaveV2MarketsData[market.value] = await _getAaveV2MarketsData(client, network, market);
687
+ }),
688
+ ...compoundV2Markets.map(async (market) => {
689
+ markets.compoundV2MarketsData[market.value] = await _getCompoundV2MarketsData(client, network);
690
+ }),
691
+ ...crvUsdMarkets.map(async (market) => {
692
+ markets.crvUsdMarketsData[market.value] = await _getCurveUsdGlobalData(client, network, market);
693
+ }),
694
+ ...llamaLendMarkets.map(async (market) => {
695
+ markets.llamaLendMarketsData[market.value] = await _getLlamaLendGlobalData(client, network, market);
696
+ }),
697
+ ...liquityV2Markets.map(async (market) => {
698
+ markets.liquityV2MarketsData[market.value] = await _getLiquityV2MarketData(client, network, market);
699
+ }),
700
+ (async () => {
701
+ if (!isFluidSupported) return;
702
+ try {
703
+ markets.fluidMarketsData = await _getAllFluidMarketDataPortfolio(client, network);
704
+ } catch (error) {
705
+ console.error('Error fetching Fluid markets data:', error);
706
+ }
707
+ })(),
708
+ (async () => {
709
+ if (!isMainnet) return; // Maker CDPs are only available on mainnet
710
+ try {
711
+ markets.makerMarketsData = await _getMakerIlksData(client, network, MakerActiveIlks);
712
+ } catch (error) {
713
+ console.error('Error fetching Maker ilks data:', error);
714
+ }
715
+ })(),
716
+
717
+ // === INDEPENDENT USER DATA (doesn't depend on market data) ===
718
+ ...addresses.map(async (address) => {
719
+ if (!isMainnet) return; // Maker CDPs are only available on mainnet
720
+ const makerCdp = await _getUserCdps(client, network, address);
721
+ makerCdps[address.toLowerCase() as EthAddress] = makerCdp;
722
+ }),
723
+ ...addresses.map(async (address) => {
724
+ try {
725
+ if (!isFluidSupported) return; // Fluid is not available on Optimism
726
+ const userPositions = (await _getUserPositionsPortfolio(client, network, address));
727
+ for (const position of userPositions) {
728
+ if (position.userData && new Dec(position.userData.suppliedUsd).gt(0)) {
729
+ positions[address.toLowerCase() as EthAddress].fluid.data[position.userData.nftId] = position.userData;
730
+ }
731
+ }
732
+ } catch (error) {
733
+ console.error(`Error fetching Fluid positions for address ${address}:`, error);
734
+ positions[address.toLowerCase() as EthAddress].fluid = {
735
+ error: `Error fetching Fluid positions for address ${address}`,
736
+ data: {},
737
+ };
738
+ }
739
+ }),
740
+ ]);
741
+
742
+ await Promise.all([
743
+ ...aaveV3Markets.map((market) => addresses.map(async (address) => {
744
+ try {
745
+ const accData = await _getAaveV3AccountData(client, network, address, { selectedMarket: market, ...markets.aaveV3MarketsData[market.value] });
746
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].aaveV3[market.value] = { error: '', data: accData };
747
+ } catch (error) {
748
+ console.error(`Error fetching AaveV3 account data for address ${address} on market ${market.value}:`, error);
749
+ positions[address.toLowerCase() as EthAddress].aaveV3[market.value] = { error: `Error fetching AaveV3 account data for address ${address} on market ${market.value}`, data: null };
750
+ }
751
+ })).flat(),
752
+ ...aaveV4Spokes.map((spoke) => addresses.map(async (address) => {
753
+ try {
754
+ const accData = await _getAaveV4AccountData(client, network, markets.aaveV4SpokesData[spoke.value], address);
755
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].aaveV4[spoke.value] = { error: '', data: accData };
756
+ } catch (error) {
757
+ console.error(`Error fetching AaveV4 account data for address ${address} on spoke ${spoke.value}:`, error);
758
+ positions[address.toLowerCase() as EthAddress].aaveV4[spoke.value] = { error: `Error fetching AaveV4 account data for address ${address} on spoke ${spoke.value}`, data: null };
759
+ }
760
+ })).flat(),
761
+ ...morphoMarkets.map((market) => addresses.map(async (address) => {
762
+ try {
763
+ const accData = await _getMorphoBlueAccountData(client, network, address, market, markets.morphoMarketsData[market.value]);
764
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].morphoBlue[market.value] = { error: '', data: accData };
765
+ } catch (error) {
766
+ console.error(`Error fetching MorphoBlue account data for address ${address} on market ${market.value}:`, error);
767
+ positions[address.toLowerCase() as EthAddress].morphoBlue[market.value] = { error: `Error fetching MorphoBlue account data for address ${address} on market ${market.value}`, data: null };
768
+ }
769
+ })).flat(),
770
+ ...morphoMidnightMarkets.map((market) => addresses.map(async (address) => {
771
+ try {
772
+ const accData = await _getMorphoMidnightAccountData(client, network, address, market, markets.morphoMidnightMarketsData[market.value]);
773
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].morphoMidnight[market.value] = { error: '', data: accData };
774
+ } catch (error) {
775
+ console.error(`Error fetching MorphoMidnight account data for address ${address} on market ${market.value}:`, error);
776
+ positions[address.toLowerCase() as EthAddress].morphoMidnight[market.value] = { error: `Error fetching MorphoMidnight account data for address ${address} on market ${market.value}`, data: null };
777
+ }
778
+ })).flat(),
779
+ ...compoundV3Markets.map((market) => addresses.map(async (address) => {
780
+ try {
781
+ const accData = await _getCompoundV3AccountData(client, network, address, ZERO_ADDRESS, { selectedMarket: market, assetsData: markets.compoundV3MarketsData[market.value].assetsData });
782
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].compoundV3[market.value] = { error: '', data: accData };
783
+ } catch (error) {
784
+ console.error(`Error fetching CompoundV3 account data for address ${address} on market ${market.value}:`, error);
785
+ positions[address.toLowerCase() as EthAddress].compoundV3[market.value] = { error: `Error fetching CompoundV3 account data for address ${address} on market ${market.value}`, data: null };
786
+ }
787
+ })).flat(),
788
+ ...sparkMarkets.map((market) => addresses.map(async (address) => {
789
+ try {
790
+ const accData = await _getSparkAccountData(client, network, address, { selectedMarket: market, assetsData: markets.sparkMarketsData[market.value].assetsData, eModeCategoriesData: markets.sparkMarketsData[market.value].eModeCategoriesData });
791
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].spark[market.value] = { error: '', data: accData };
792
+ } catch (error) {
793
+ console.error(`Error fetching Spark account data for address ${address} on market ${market.value}:`, error);
794
+ positions[address.toLowerCase() as EthAddress].spark[market.value] = { error: `Error fetching Spark account data for address ${address} on market ${market.value}`, data: null };
795
+ }
796
+ })).flat(),
797
+ ...addresses.map(async (address) => makerCdps[address.toLowerCase() as EthAddress]?.map(async (cdpInfo) => {
798
+ try {
799
+ // reuse ilk data fetched for the markets payload; ilks outside the active set are fetched on demand
800
+ const cdpData = await _getMakerCdpData(client, network, cdpInfo, markets.makerMarketsData[cdpInfo.ilkLabel]);
801
+ if (cdpData) {
802
+ positions[address.toLowerCase() as EthAddress].maker[cdpInfo.id] = { error: '', data: cdpData };
803
+ }
804
+ } catch (error) {
805
+ console.error(`Error fetching Maker CDP data for address ${address} with ID ${cdpInfo.id}:`, error);
806
+ positions[address.toLowerCase() as EthAddress].maker[cdpInfo.id] = { error: `Error fetching Maker CDP data for address ${address} with ID ${cdpInfo.id}`, data: null };
807
+ }
808
+ })).flat(),
809
+ ...aaveV2Markets.map((market) => addresses.map(async (address) => {
810
+ try {
811
+ const accData = await _getAaveV2AccountData(client, network, address, markets.aaveV2MarketsData[market.value].assetsData, market);
812
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].aaveV2[market.value] = { error: '', data: accData };
813
+ } catch (error) {
814
+ console.error(`Error fetching AaveV2 account data for address ${address}:`, error);
815
+ positions[address.toLowerCase() as EthAddress].aaveV2[market.value] = { error: `Error fetching AaveV2 account data for address ${address}`, data: null };
816
+ }
817
+ })).flat(),
818
+ ...compoundV2Markets.map((market) => addresses.map(async (address) => {
819
+ try {
820
+ const accData = await _getCompoundV2AccountData(client, network, address, markets.compoundV2MarketsData[market.value].assetsData);
821
+ if (new Dec(accData.suppliedUsd).gt(0)) positions[address.toLowerCase() as EthAddress].compoundV2[market.value] = { error: '', data: accData };
822
+ } catch (error) {
823
+ console.error(`Error fetching CompoundV2 account data for address ${address}:`, error);
824
+ positions[address.toLowerCase() as EthAddress].compoundV2[market.value] = { error: `Error fetching CompoundV2 account data for address ${address}`, data: null };
825
+ }
826
+ })).flat(),
827
+ ...addresses.map(async (address) => {
828
+ try {
829
+ if (!isMainnet) return; // Liquity trove info is only available on mainnet
830
+ const troveInfo = await _getLiquityTroveInfo(client, network, address);
831
+ if (new Dec(troveInfo.collateral).gt(0)) positions[address.toLowerCase() as EthAddress].liquity = { error: '', data: troveInfo };
832
+ } catch (error) {
833
+ console.error(`Error fetching Liquity trove info for address ${address}:`, error);
834
+ positions[address.toLowerCase() as EthAddress].liquity = { error: `Error fetching Liquity trove info for address ${address}`, data: null };
835
+ }
836
+ }),
837
+ ...crvUsdMarkets.map((market) => addresses.map(async (address) => {
838
+ try {
839
+ const accData = await _getCurveUsdUserData(client, network, address, market, markets.crvUsdMarketsData[market.value].activeBand);
840
+ if (new Dec(accData.suppliedUsd).gt(0) || new Dec(accData.borrowedUsd).gt(0)) {
841
+ positions[address.toLowerCase() as EthAddress].crvUsd[market.value] = { error: '', data: { ...accData, borrowRate: markets.crvUsdMarketsData[market.value].borrowRate } };
842
+ }
843
+ } catch (error) {
844
+ console.error(`Error fetching Curve USD account data for address ${address} on market ${market.value}:`, error);
845
+ positions[address.toLowerCase() as EthAddress].crvUsd[market.value] = { error: `Error fetching Curve USD account data for address ${address} on market ${market.value}`, data: null };
846
+ }
847
+ })).flat(),
848
+ ...llamaLendMarkets.map((market) => addresses.map(async (address) => {
849
+ try {
850
+ const accData = await _getLlamaLendUserData(client, network, address, market, markets.llamaLendMarketsData[market.value]);
851
+ if (new Dec(accData.suppliedUsd).gt(0) || new Dec(accData.borrowedUsd).gt(0)) {
852
+ positions[address.toLowerCase() as EthAddress].llamaLend[market.value] = { error: '', data: { ...accData, borrowRate: markets.llamaLendMarketsData[market.value].borrowRate } };
853
+ }
854
+ } catch (error) {
855
+ console.error(`Error fetching LlamaLend account data for address ${address} on market ${market.value}:`, error);
856
+ positions[address.toLowerCase() as EthAddress].llamaLend[market.value] = { error: `Error fetching LlamaLend account data for address ${address} on market ${market.value}`, data: null };
857
+ }
858
+ })).flat(),
859
+ ]);
860
+
861
+ return {
862
+ positions,
863
+ markets,
864
+ };
865
+ }
866
+
599
867
  export * from './discovery';
package/src/types/aave.ts CHANGED
@@ -143,6 +143,8 @@ export interface AavePositionData extends MMPositionData {
143
143
  collRatio: string,
144
144
  // Safety ratio as evaluated by automation bots (LTV-0 collateral credited at LLTV - 5%). Aave v3 only.
145
145
  safetyRatioWithLtvZeroFallback?: string,
146
+ // Normalised safety ratio (100 = liquidation on every protocol). Aave v3: the LTV-0 fallback ratio, Aave v2: `ratio`.
147
+ safetyRatio?: string,
146
148
  suppliedUsd: string,
147
149
  borrowedUsd: string,
148
150
  borrowLimitUsd: string,
@@ -177,6 +179,7 @@ export interface AaveV3AggregatedPositionData {
177
179
  collRatio: string,
178
180
  borrowLimitWithLtvZeroFallbackUsd: string,
179
181
  safetyRatioWithLtvZeroFallback: string,
182
+ safetyRatio: string,
180
183
  netApy: string,
181
184
  incentiveUsd: string,
182
185
  totalInterestUsd: string,
@@ -183,6 +183,7 @@ export interface AaveV4AggregatedPositionData {
183
183
  leftToBorrowUsd: string,
184
184
  ratio: string,
185
185
  collRatio: string,
186
+ safetyRatio: string,
186
187
  liqRatio: string,
187
188
  liqPercent: string,
188
189
  leveragedType: LeverageType,
@@ -112,6 +112,7 @@ export interface CompoundAggregatedPositionData {
112
112
  leftToBorrowUsd: string,
113
113
  ratio: string,
114
114
  collRatio: string,
115
+ safetyRatio: string,
115
116
  netApy: string,
116
117
  incentiveUsd: string,
117
118
  totalInterestUsd: string,
@@ -132,6 +133,7 @@ export interface CompoundAggregatedPositionData {
132
133
  export interface CompoundPositionData extends MMPositionData {
133
134
  ratio: string,
134
135
  minRatio: string,
136
+ safetyRatio?: string,
135
137
  suppliedUsd: string,
136
138
  borrowedUsd: string,
137
139
  borrowLimitUsd: string,
@@ -344,6 +344,7 @@ export interface FluidAggregatedVaultData {
344
344
  merklBorrowIncentives: IncentiveData[],
345
345
  ratio: string,
346
346
  collRatio: string,
347
+ safetyRatio: string,
347
348
  minRatio: string,
348
349
  totalInterestUsd: string,
349
350
  leveragedType?: LeverageType,
@@ -26,6 +26,8 @@ export interface LiquityTroveInfo {
26
26
  totalETH: string,
27
27
  totalLUSD: string,
28
28
  minCollateralRatio: number,
29
+ // Collateral ratio rebased so 100 sits on `minCollateralRatio` (normalised safety ratio).
30
+ safetyRatio: string,
29
31
  priceForRecovery: string,
30
32
  debtInFront: string,
31
33
  exposure: string,
@@ -104,6 +104,7 @@ export interface LiquityV2AggregatedTroveData {
104
104
  liquidationPrice: string,
105
105
  ratio: string,
106
106
  collRatio: string,
107
+ safetyRatio: string,
107
108
  exposure: string,
108
109
  }
109
110
 
@@ -112,6 +113,7 @@ export interface LiquityV2TroveData {
112
113
  troveId: string,
113
114
  ratio: string,
114
115
  collRatio: string,
116
+ safetyRatio?: string,
115
117
  liqRatio: string,
116
118
  borrowLimitRatio: string,
117
119
  interestRate: string,
@@ -47,6 +47,8 @@ export interface CdpData {
47
47
  debtAssetMarketPrice: string,
48
48
  liquidationPrice: string,
49
49
  ratio: string,
50
+ // Collateral ratio rebased so 100 sits on `liqPercent` (normalised safety ratio).
51
+ safetyRatio: string,
50
52
  liqRatio: string,
51
53
  liqPercent: number,
52
54
  assetPrice: string,
@@ -206,6 +206,7 @@ export interface MorphoBlueAggregatedPositionData {
206
206
  totalInterestUsd: string,
207
207
  ltv: string,
208
208
  ratio: string,
209
+ safetyRatio: string, // borrowLimitUsd / borrowedUsd as a percentage (100 = liquidation)
209
210
  leveragedType: LeverageType,
210
211
  leveragedAsset?: string,
211
212
  currentVolatilePairRatio?: string,
@@ -229,6 +230,7 @@ export interface MorphoBluePositionData {
229
230
  totalInterestUsd: string,
230
231
  ltv: string,
231
232
  ratio: string,
233
+ safetyRatio?: string,
232
234
  leveragedType: LeverageType,
233
235
  leveragedAsset?: string,
234
236
  currentVolatilePairRatio?: string,
@@ -39,6 +39,51 @@ export enum MorphoMidnightVersions {
39
39
  MorphoMidnightTenorCbETHWETH_20261127_Base = 'morphomidnighttenorcbethweth_20261127_base',
40
40
  MorphoMidnightTenorCbETHWETH_20261225_Base = 'morphomidnighttenorcbethweth_20261225_base',
41
41
  MorphoMidnightTenorCbETHWETH_20270129_Base = 'morphomidnighttenorcbethweth_20270129_base',
42
+ // ETHEREUM
43
+ // Sourced from the official listing at https://markets.morpho.org/fixed?chains=1
44
+ MorphoMidnightWBTCUSDC_860_20260925_Eth = 'morphomidnightwbtcusdc_860_20260925_eth',
45
+ MorphoMidnightWBTCUSDC_860_20261030_Eth = 'morphomidnightwbtcusdc_860_20261030_eth',
46
+ MorphoMidnightWBTCUSDC_860_20261127_Eth = 'morphomidnightwbtcusdc_860_20261127_eth',
47
+ MorphoMidnightWBTCUSDC_860_20261225_Eth = 'morphomidnightwbtcusdc_860_20261225_eth',
48
+ MorphoMidnightWBTCUSDC_860_20270129_Eth = 'morphomidnightwbtcusdc_860_20270129_eth',
49
+ MorphoMidnightWBTCUSDC_860_20270226_Eth = 'morphomidnightwbtcusdc_860_20270226_eth',
50
+ MorphoMidnightWBTCUSDC_860_20270326_Eth = 'morphomidnightwbtcusdc_860_20270326_eth',
51
+ MorphoMidnightCbBTCUSDC_860_20260925_Eth = 'morphomidnightcbbtcusdc_860_20260925_eth',
52
+ MorphoMidnightCbBTCUSDC_860_20261030_Eth = 'morphomidnightcbbtcusdc_860_20261030_eth',
53
+ MorphoMidnightCbBTCUSDC_860_20261127_Eth = 'morphomidnightcbbtcusdc_860_20261127_eth',
54
+ MorphoMidnightCbBTCUSDC_860_20261225_Eth = 'morphomidnightcbbtcusdc_860_20261225_eth',
55
+ MorphoMidnightCbBTCUSDC_860_20270129_Eth = 'morphomidnightcbbtcusdc_860_20270129_eth',
56
+ MorphoMidnightCbBTCUSDC_860_20270226_Eth = 'morphomidnightcbbtcusdc_860_20270226_eth',
57
+ MorphoMidnightCbBTCUSDC_860_20270326_Eth = 'morphomidnightcbbtcusdc_860_20270326_eth',
58
+ // Tenor-hosted Midnight markets (same core, different order book)
59
+ MorphoMidnightTenorReUSDUSDC_20260925_Eth = 'morphomidnighttenorreusdusdc_20260925_eth',
60
+ MorphoMidnightTenorReUSDUSDC_20261030_Eth = 'morphomidnighttenorreusdusdc_20261030_eth',
61
+ MorphoMidnightTenorReUSDUSDC_20261127_Eth = 'morphomidnighttenorreusdusdc_20261127_eth',
62
+ MorphoMidnightTenorReUSDUSDC_20261225_Eth = 'morphomidnighttenorreusdusdc_20261225_eth',
63
+ MorphoMidnightTenorSiUSDUSDC_20260925_Eth = 'morphomidnighttenorsiusdusdc_20260925_eth',
64
+ MorphoMidnightTenorSiUSDUSDC_20261030_Eth = 'morphomidnighttenorsiusdusdc_20261030_eth',
65
+ MorphoMidnightTenorSiUSDUSDC_20261127_Eth = 'morphomidnighttenorsiusdusdc_20261127_eth',
66
+ MorphoMidnightTenorSiUSDUSDC_20261225_Eth = 'morphomidnighttenorsiusdusdc_20261225_eth',
67
+ MorphoMidnightTenorStrUSDUSDC_20260925_Eth = 'morphomidnighttenorstrusdusdc_20260925_eth',
68
+ MorphoMidnightTenorStrUSDUSDC_20261030_Eth = 'morphomidnighttenorstrusdusdc_20261030_eth',
69
+ MorphoMidnightTenorStrUSDUSDC_20261127_Eth = 'morphomidnighttenorstrusdusdc_20261127_eth',
70
+ MorphoMidnightTenorStrUSDUSDC_20261225_Eth = 'morphomidnighttenorstrusdusdc_20261225_eth',
71
+ MorphoMidnightTenorUSD3USDC_20260925_Eth = 'morphomidnighttenorusd3usdc_20260925_eth',
72
+ MorphoMidnightTenorUSD3USDC_20261030_Eth = 'morphomidnighttenorusd3usdc_20261030_eth',
73
+ MorphoMidnightTenorUSD3USDC_20261127_Eth = 'morphomidnighttenorusd3usdc_20261127_eth',
74
+ MorphoMidnightTenorUSD3USDC_20261225_Eth = 'morphomidnighttenorusd3usdc_20261225_eth',
75
+ MorphoMidnightTenorWETHUSDC_20260925_Eth = 'morphomidnighttenorwethusdc_20260925_eth',
76
+ MorphoMidnightTenorWETHUSDC_20261030_Eth = 'morphomidnighttenorwethusdc_20261030_eth',
77
+ MorphoMidnightTenorWETHUSDC_20261127_Eth = 'morphomidnighttenorwethusdc_20261127_eth',
78
+ MorphoMidnightTenorWETHUSDC_20261225_Eth = 'morphomidnighttenorwethusdc_20261225_eth',
79
+ MorphoMidnightTenorWsrUSDUSDC_20260925_Eth = 'morphomidnighttenorwsrusdusdc_20260925_eth',
80
+ MorphoMidnightTenorWsrUSDUSDC_20261030_Eth = 'morphomidnighttenorwsrusdusdc_20261030_eth',
81
+ MorphoMidnightTenorWsrUSDUSDC_20261127_Eth = 'morphomidnighttenorwsrusdusdc_20261127_eth',
82
+ MorphoMidnightTenorWsrUSDUSDC_20261225_Eth = 'morphomidnighttenorwsrusdusdc_20261225_eth',
83
+ MorphoMidnightTenorWstETHWETH_20260925_Eth = 'morphomidnighttenorwstethweth_20260925_eth',
84
+ MorphoMidnightTenorWstETHWETH_20261030_Eth = 'morphomidnighttenorwstethweth_20261030_eth',
85
+ MorphoMidnightTenorWstETHWETH_20261127_Eth = 'morphomidnighttenorwstethweth_20261127_eth',
86
+ MorphoMidnightTenorWstETHWETH_20261225_Eth = 'morphomidnighttenorwstethweth_20261225_eth',
42
87
  }
43
88
 
44
89
  export type MorphoMidnightCurator = 'Morpho' | 'Tenor';
@@ -48,6 +93,13 @@ export interface MorphoMidnightCollateralParams {
48
93
  lltv: number | string,
49
94
  liquidationCursor: number | string,
50
95
  oracle: EthAddress,
96
+ /**
97
+ * A collateral the market carries on-chain but the app never surfaces: a curator's own vault share
98
+ * token (Tenor's collateral vaults) or the loan token itself (Morpho's mainnet ladders list USDC at
99
+ * 98% next to the real collateral). It is not an asset the app deals in — nothing renders, prices or
100
+ * supplies it — but it stays in `collaterals` because the market id is the hash of the full set.
101
+ */
102
+ hidden?: boolean,
51
103
  }
52
104
 
53
105
  export interface MorphoMidnightMarketData {
@@ -58,11 +110,15 @@ export interface MorphoMidnightMarketData {
58
110
  value: MorphoMidnightVersions,
59
111
  midnight: EthAddress,
60
112
  loanToken: EthAddress,
61
- collaterals: MorphoMidnightCollateralParams[],
62
113
  /**
63
- * Tenor's curated markets list the curator's own vault share token next to the real collateral.
114
+ * Every collateral the market carries on-chain, in the chain's own order which is what the id is
115
+ * hashed from, so neither the set nor the order may be rearranged. Entries the app does not deal in
116
+ * are flagged `hidden` rather than kept in a second list: their on-chain position varies per market
117
+ * (Morpho's mainnet cbBTC ladder lists USDC first, its WBTC ladder second), so a separate list can
118
+ * only be re-joined by guessing, and every positional read — `MarketInfo.prices[i]`,
119
+ * `PositionInfo.collateral[i]`, the collateral index a supply call takes — indexes into *this* array.
64
120
  */
65
- hiddenCollaterals?: MorphoMidnightCollateralParams[],
121
+ collaterals: MorphoMidnightCollateralParams[],
66
122
  maturity: number, // unix timestamp (seconds)
67
123
  rcfThreshold: number | string,
68
124
  enterGate: EthAddress,
@@ -134,6 +190,7 @@ export interface MorphoMidnightAggregatedPositionData {
134
190
  ltv: string,
135
191
  ratio: string, // health ratio as a percentage (from MidnightView.ratio, 1e18-scaled)
136
192
  healthRatio: string, // liquidationLimitUsd / borrowedUsd
193
+ safetyRatio: string, // borrowLimitUsd / borrowedUsd as a percentage (100 = liquidation)
137
194
  leveragedType: LeverageType,
138
195
  leveragedAsset?: string,
139
196
  currentVolatilePairRatio?: string,
@@ -1,16 +1,20 @@
1
- import { AaveV2PositionData, AaveV3PositionData, AaveVersions } from './aave';
2
- import { AaveV4AccountData, AaveV4SpokesType } from './aaveV4';
1
+ import {
2
+ AaveV2MarketData, AaveV2PositionData, AaveV3MarketData, AaveV3PositionData, AaveVersions,
3
+ } from './aave';
4
+ import { AaveV4AccountData, AaveV4SpokeData, AaveV4SpokesType } from './aaveV4';
3
5
  import { EthAddress } from './common';
4
- import { CompoundV2PositionData, CompoundV3PositionData, CompoundVersions } from './compound';
5
- import { CrvUSDUserData, CrvUSDVersions } from './curveUsd';
6
- import { FluidVaultData } from './fluid';
6
+ import {
7
+ CompoundV2MarketsData, CompoundV2PositionData, CompoundV3MarketsData, CompoundV3PositionData, CompoundVersions,
8
+ } from './compound';
9
+ import { CrvUSDGlobalMarketData, CrvUSDUserData, CrvUSDVersions } from './curveUsd';
10
+ import { FluidMarketData, FluidVaultData } from './fluid';
7
11
  import { LiquityTroveInfo } from './liquity';
8
- import { LiquityV2TroveData, LiquityV2Versions } from './liquityV2';
9
- import { LlamaLendUserData, LlamaLendVersionsType } from './llamaLend';
10
- import { CdpData } from './maker';
11
- import { MorphoBluePositionData, MorphoBlueVersions } from './morphoBlue';
12
- import { MorphoMidnightPositionData, MorphoMidnightVersions } from './morphoMidnight';
13
- import { SparkPositionData, SparkVersions } from './spark';
12
+ import { LiquityV2MarketData, LiquityV2TroveData, LiquityV2Versions } from './liquityV2';
13
+ import { LlamaLendGlobalMarketData, LlamaLendUserData, LlamaLendVersionsType } from './llamaLend';
14
+ import { CdpData, IlkInfo } from './maker';
15
+ import { MorphoBlueMarketInfo, MorphoBluePositionData, MorphoBlueVersions } from './morphoBlue';
16
+ import { MorphoMidnightMarketInfo, MorphoMidnightPositionData, MorphoMidnightVersions } from './morphoMidnight';
17
+ import { SparkMarketsData, SparkPositionData, SparkVersions } from './spark';
14
18
 
15
19
  export interface PortfolioProtocolData<T> {
16
20
  error: string,
@@ -62,4 +66,19 @@ export interface PortfolioPositionsDataForAddress {
62
66
 
63
67
  export interface PortfolioPositionsData {
64
68
  [key: EthAddress]: PortfolioPositionsDataForAddress;
65
- }
69
+ }
70
+ export interface PortfolioMarketsData {
71
+ morphoMarketsData: Record<string, MorphoBlueMarketInfo>;
72
+ morphoMidnightMarketsData: Record<string, MorphoMidnightMarketInfo>;
73
+ compoundV3MarketsData: Record<string, CompoundV3MarketsData>;
74
+ sparkMarketsData: Record<string, SparkMarketsData>;
75
+ aaveV3MarketsData: Record<string, AaveV3MarketData>;
76
+ aaveV2MarketsData: Record<string, AaveV2MarketData>;
77
+ compoundV2MarketsData: Record<string, CompoundV2MarketsData>;
78
+ crvUsdMarketsData: Record<string, CrvUSDGlobalMarketData>;
79
+ llamaLendMarketsData: Record<string, LlamaLendGlobalMarketData>;
80
+ liquityV2MarketsData: Record<string, LiquityV2MarketData>;
81
+ aaveV4SpokesData: Record<string, AaveV4SpokeData>;
82
+ fluidMarketsData: Record<string, FluidMarketData>;
83
+ makerMarketsData: Record<string, IlkInfo>;
84
+ }
@@ -99,6 +99,7 @@ export interface SparkAggregatedPositionData {
99
99
  leftToBorrowUsd: string,
100
100
  ratio: string,
101
101
  collRatio: string,
102
+ safetyRatio: string,
102
103
  netApy: string,
103
104
  incentiveUsd: string,
104
105
  totalInterestUsd: string,
@@ -119,6 +120,7 @@ export interface SparkPositionData extends MMPositionData {
119
120
  ratio: string,
120
121
  minRatio: string,
121
122
  collRatio: string,
123
+ safetyRatio?: string,
122
124
  suppliedUsd: string,
123
125
  borrowedUsd: string,
124
126
  borrowLimitUsd: string,