@scallop-io/sui-scallop-sdk 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/queries/portfolioQuery.ts +14 -0
package/dist/index.d.mts
CHANGED
|
@@ -1206,6 +1206,15 @@ declare class ScallopQuery {
|
|
|
1206
1206
|
riskLevel: number;
|
|
1207
1207
|
availableCollateralInUsd: number;
|
|
1208
1208
|
totalUnhealthyCollateralInUsd: number;
|
|
1209
|
+
collaterals: {
|
|
1210
|
+
coinName: string;
|
|
1211
|
+
symbol: string;
|
|
1212
|
+
coinDecimals: number;
|
|
1213
|
+
coinType: string;
|
|
1214
|
+
coinPrice: number;
|
|
1215
|
+
depositedCoin: number;
|
|
1216
|
+
depositedValueInUsd: number;
|
|
1217
|
+
}[];
|
|
1209
1218
|
borrowedPools: {
|
|
1210
1219
|
coinName: string;
|
|
1211
1220
|
symbol: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1206,6 +1206,15 @@ declare class ScallopQuery {
|
|
|
1206
1206
|
riskLevel: number;
|
|
1207
1207
|
availableCollateralInUsd: number;
|
|
1208
1208
|
totalUnhealthyCollateralInUsd: number;
|
|
1209
|
+
collaterals: {
|
|
1210
|
+
coinName: string;
|
|
1211
|
+
symbol: string;
|
|
1212
|
+
coinDecimals: number;
|
|
1213
|
+
coinType: string;
|
|
1214
|
+
coinPrice: number;
|
|
1215
|
+
depositedCoin: number;
|
|
1216
|
+
depositedValueInUsd: number;
|
|
1217
|
+
}[];
|
|
1209
1218
|
borrowedPools: {
|
|
1210
1219
|
coinName: string;
|
|
1211
1220
|
symbol: string;
|