@defisaver/positions-sdk 2.1.151 → 2.1.152-shifter-v2-dev-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 (55) hide show
  1. package/cjs/claiming/compV3.js +0 -1
  2. package/cjs/config/contracts.d.ts +4 -0
  3. package/cjs/config/contracts.js +4 -0
  4. package/cjs/fluid/index.d.ts +2 -0
  5. package/cjs/fluid/index.js +36 -1
  6. package/cjs/helpers/morphoMidnightHelpers/tenor.d.ts +6 -2
  7. package/cjs/helpers/morphoMidnightHelpers/tenor.js +5 -1
  8. package/cjs/maker/index.d.ts +7 -2
  9. package/cjs/maker/index.js +27 -10
  10. package/cjs/markets/index.d.ts +2 -1
  11. package/cjs/markets/index.js +4 -1
  12. package/cjs/markets/maker/index.d.ts +1 -0
  13. package/cjs/markets/maker/index.js +13 -0
  14. package/cjs/markets/morphoMidnight/index.d.ts +92 -10
  15. package/cjs/markets/morphoMidnight/index.js +519 -60
  16. package/cjs/morphoMidnight/index.js +11 -1
  17. package/cjs/portfolio/index.d.ts +5 -1
  18. package/cjs/portfolio/index.js +287 -0
  19. package/cjs/types/morphoMidnight.d.ts +57 -4
  20. package/cjs/types/morphoMidnight.js +45 -0
  21. package/cjs/types/portfolio.d.ts +26 -10
  22. package/esm/claiming/compV3.js +0 -1
  23. package/esm/config/contracts.d.ts +4 -0
  24. package/esm/config/contracts.js +4 -0
  25. package/esm/fluid/index.d.ts +2 -0
  26. package/esm/fluid/index.js +33 -0
  27. package/esm/helpers/morphoMidnightHelpers/tenor.d.ts +6 -2
  28. package/esm/helpers/morphoMidnightHelpers/tenor.js +6 -2
  29. package/esm/maker/index.d.ts +7 -2
  30. package/esm/maker/index.js +26 -11
  31. package/esm/markets/index.d.ts +2 -1
  32. package/esm/markets/index.js +2 -1
  33. package/esm/markets/maker/index.d.ts +1 -0
  34. package/esm/markets/maker/index.js +10 -0
  35. package/esm/markets/morphoMidnight/index.d.ts +92 -10
  36. package/esm/markets/morphoMidnight/index.js +473 -59
  37. package/esm/morphoMidnight/index.js +11 -1
  38. package/esm/portfolio/index.d.ts +5 -1
  39. package/esm/portfolio/index.js +289 -3
  40. package/esm/types/morphoMidnight.d.ts +57 -4
  41. package/esm/types/morphoMidnight.js +45 -0
  42. package/esm/types/portfolio.d.ts +26 -10
  43. package/package.json +1 -1
  44. package/src/claiming/compV3.ts +0 -1
  45. package/src/config/contracts.ts +4 -0
  46. package/src/fluid/index.ts +40 -0
  47. package/src/helpers/morphoMidnightHelpers/tenor.ts +6 -2
  48. package/src/maker/index.ts +56 -28
  49. package/src/markets/index.ts +3 -1
  50. package/src/markets/maker/index.ts +10 -0
  51. package/src/markets/morphoMidnight/index.ts +724 -61
  52. package/src/morphoMidnight/index.ts +8 -1
  53. package/src/portfolio/index.ts +270 -2
  54. package/src/types/morphoMidnight.ts +59 -3
  55. package/src/types/portfolio.ts +31 -12
@@ -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';
@@ -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,
@@ -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
+ }