@defisaver/positions-sdk 2.1.152-shifter-v2-dev-dev → 2.1.153-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.
- package/cjs/fluid/index.d.ts +0 -2
- package/cjs/fluid/index.js +1 -36
- package/cjs/maker/index.d.ts +2 -7
- package/cjs/maker/index.js +10 -27
- package/cjs/markets/index.d.ts +0 -1
- package/cjs/markets/index.js +1 -3
- package/cjs/portfolio/index.d.ts +1 -5
- package/cjs/portfolio/index.js +0 -287
- package/cjs/types/portfolio.d.ts +10 -26
- package/esm/fluid/index.d.ts +0 -2
- package/esm/fluid/index.js +0 -33
- package/esm/maker/index.d.ts +2 -7
- package/esm/maker/index.js +11 -26
- package/esm/markets/index.d.ts +0 -1
- package/esm/markets/index.js +0 -1
- package/esm/portfolio/index.d.ts +1 -5
- package/esm/portfolio/index.js +3 -289
- package/esm/types/portfolio.d.ts +10 -26
- package/package.json +1 -1
- package/src/fluid/index.ts +0 -40
- package/src/maker/index.ts +28 -56
- package/src/markets/index.ts +1 -2
- package/src/portfolio/index.ts +2 -270
- package/src/types/portfolio.ts +12 -31
- package/cjs/markets/maker/index.d.ts +0 -1
- package/cjs/markets/maker/index.js +0 -13
- package/esm/markets/maker/index.d.ts +0 -1
- package/esm/markets/maker/index.js +0 -10
- package/src/markets/maker/index.ts +0 -10
package/src/portfolio/index.ts
CHANGED
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
CrvUsdMarkets,
|
|
8
8
|
LiquityV2Markets,
|
|
9
9
|
LlamaLendMarkets,
|
|
10
|
-
MakerActiveIlks,
|
|
11
10
|
MorphoBlueMarkets,
|
|
12
11
|
MorphoMidnightMarkets,
|
|
13
12
|
SparkMarkets,
|
|
@@ -28,7 +27,6 @@ import {
|
|
|
28
27
|
LlamaLendGlobalMarketData,
|
|
29
28
|
MorphoBlueMarketInfo,
|
|
30
29
|
MorphoMidnightMarketInfo,
|
|
31
|
-
PortfolioMarketsData,
|
|
32
30
|
PortfolioPositionsData,
|
|
33
31
|
SparkMarketsData,
|
|
34
32
|
} from '../types';
|
|
@@ -38,13 +36,13 @@ import { _getCurveUsdGlobalData, _getCurveUsdUserData } from '../curveUsd';
|
|
|
38
36
|
import { _getLlamaLendGlobalData, _getLlamaLendUserData } from '../llamaLend';
|
|
39
37
|
import { _getAaveV3AccountData, _getAaveV3MarketData, getStakeAaveData } from '../aaveV3';
|
|
40
38
|
import { ZERO_ADDRESS } from '../constants';
|
|
41
|
-
import { _getMakerCdpData,
|
|
39
|
+
import { _getMakerCdpData, _getUserCdps } from '../maker';
|
|
42
40
|
import { _getAaveV2AccountData, _getAaveV2MarketsData } from '../aaveV2';
|
|
43
41
|
import { _getCompoundV2AccountData, _getCompoundV2MarketsData } from '../compoundV2';
|
|
44
42
|
import { getViemProvider } from '../services/viem';
|
|
45
43
|
import { _getLiquityTroveInfo, getLiquityStakingData } from '../liquity';
|
|
46
44
|
import { _getLiquityV2MarketData, getLiquitySAndYBold, getLiquityV2Staking } from '../liquityV2';
|
|
47
|
-
import {
|
|
45
|
+
import { _getAllUserEarnPositionsWithFTokens, _getUserPositionsPortfolio } from '../fluid';
|
|
48
46
|
import { getUmbrellaData } from '../umbrella';
|
|
49
47
|
import { getMerklUnclaimedRewards, getUnclaimedRewardsForAllMarkets } from '../claiming/aaveV3';
|
|
50
48
|
import { getCompoundV3Rewards } from '../claiming/compV3';
|
|
@@ -598,270 +596,4 @@ export async function getPortfolioData(provider: EthereumProvider, network: Netw
|
|
|
598
596
|
};
|
|
599
597
|
}
|
|
600
598
|
|
|
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
|
-
|
|
867
599
|
export * from './discovery';
|
package/src/types/portfolio.ts
CHANGED
|
@@ -1,20 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
} from './aave';
|
|
4
|
-
import { AaveV4AccountData, AaveV4SpokeData, AaveV4SpokesType } from './aaveV4';
|
|
1
|
+
import { AaveV2PositionData, AaveV3PositionData, AaveVersions } from './aave';
|
|
2
|
+
import { AaveV4AccountData, AaveV4SpokesType } from './aaveV4';
|
|
5
3
|
import { EthAddress } from './common';
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
} from './
|
|
9
|
-
import { CrvUSDGlobalMarketData, CrvUSDUserData, CrvUSDVersions } from './curveUsd';
|
|
10
|
-
import { FluidMarketData, FluidVaultData } from './fluid';
|
|
4
|
+
import { CompoundV2PositionData, CompoundV3PositionData, CompoundVersions } from './compound';
|
|
5
|
+
import { CrvUSDUserData, CrvUSDVersions } from './curveUsd';
|
|
6
|
+
import { FluidVaultData } from './fluid';
|
|
11
7
|
import { LiquityTroveInfo } from './liquity';
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { CdpData
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
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';
|
|
18
14
|
|
|
19
15
|
export interface PortfolioProtocolData<T> {
|
|
20
16
|
error: string,
|
|
@@ -66,19 +62,4 @@ export interface PortfolioPositionsDataForAddress {
|
|
|
66
62
|
|
|
67
63
|
export interface PortfolioPositionsData {
|
|
68
64
|
[key: EthAddress]: PortfolioPositionsDataForAddress;
|
|
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
|
-
}
|
|
65
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MakerActiveIlks: string[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const MakerActiveIlks: string[];
|