@jup-ag/lend 0.0.85 → 0.0.86
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/borrow/index.d.mts +1 -1
- package/dist/borrow/index.d.ts +1 -1
- package/dist/borrow/index.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/borrow/index.d.mts
CHANGED
|
@@ -4120,7 +4120,7 @@ declare const getLiquidations: (params: Omit<LiquidateParams, "debtAmount">) =>
|
|
|
4120
4120
|
}[]>;
|
|
4121
4121
|
declare const getAllLiquidations: (params: Omit<LiquidateParams, "debtAmount" | "vaultId">) => Promise<{
|
|
4122
4122
|
vaultId: number;
|
|
4123
|
-
liquidations:
|
|
4123
|
+
liquidations: never[] | {
|
|
4124
4124
|
amtOut: string;
|
|
4125
4125
|
amtIn: string;
|
|
4126
4126
|
topTick: string;
|
package/dist/borrow/index.d.ts
CHANGED
|
@@ -4120,7 +4120,7 @@ declare const getLiquidations: (params: Omit<LiquidateParams, "debtAmount">) =>
|
|
|
4120
4120
|
}[]>;
|
|
4121
4121
|
declare const getAllLiquidations: (params: Omit<LiquidateParams, "debtAmount" | "vaultId">) => Promise<{
|
|
4122
4122
|
vaultId: number;
|
|
4123
|
-
liquidations:
|
|
4123
|
+
liquidations: never[] | {
|
|
4124
4124
|
amtOut: string;
|
|
4125
4125
|
amtIn: string;
|
|
4126
4126
|
topTick: string;
|
package/dist/borrow/index.mjs
CHANGED
|
@@ -2088,7 +2088,7 @@ const getAllLiquidations = async (params) => {
|
|
|
2088
2088
|
Array.from({ length: totalVaults - 1 }, async (_, i) => ({
|
|
2089
2089
|
vaultId: i + 1,
|
|
2090
2090
|
liquidations: await getLiquidations({ ...params, vaultId: i + 1 }).catch(
|
|
2091
|
-
() => [
|
|
2091
|
+
() => []
|
|
2092
2092
|
)
|
|
2093
2093
|
}))
|
|
2094
2094
|
);
|
package/dist/index.mjs
CHANGED