impermax-sdk 2.1.430 → 2.1.431
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.
|
@@ -561,7 +561,31 @@ class TheGraphQueryBuilder {
|
|
|
561
561
|
}`;
|
|
562
562
|
}
|
|
563
563
|
borrowersListQueryV3() {
|
|
564
|
-
return (0, graphql_tag_1.default) `{
|
|
564
|
+
return (0, graphql_tag_1.default) `{
|
|
565
|
+
positions(first: 1000) {
|
|
566
|
+
id
|
|
567
|
+
tokenId
|
|
568
|
+
user {
|
|
569
|
+
id
|
|
570
|
+
}
|
|
571
|
+
lendingPool {
|
|
572
|
+
id
|
|
573
|
+
nftlp {
|
|
574
|
+
factory
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
borrowPositions {
|
|
578
|
+
id
|
|
579
|
+
borrowBalance
|
|
580
|
+
borrowable {
|
|
581
|
+
underlying {
|
|
582
|
+
id
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
_meta { block { number } }
|
|
588
|
+
}`;
|
|
565
589
|
}
|
|
566
590
|
}
|
|
567
591
|
exports.TheGraphQueryBuilder = TheGraphQueryBuilder;
|