@haven-fi/solauto-sdk 1.0.166 → 1.0.167
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.
|
@@ -191,7 +191,7 @@ class SolautoClient extends txHandler_1.TxHandler {
|
|
|
191
191
|
}
|
|
192
192
|
async maxLtvAndLiqThreshold() {
|
|
193
193
|
if (this.maxLtvBps !== undefined && this.liqThresholdBps !== undefined) {
|
|
194
|
-
return [
|
|
194
|
+
return [this.maxLtvBps, this.liqThresholdBps];
|
|
195
195
|
}
|
|
196
196
|
return undefined;
|
|
197
197
|
}
|
package/package.json
CHANGED
|
@@ -363,7 +363,7 @@ export abstract class SolautoClient extends TxHandler {
|
|
|
363
363
|
|
|
364
364
|
async maxLtvAndLiqThreshold(): Promise<[number, number] | undefined> {
|
|
365
365
|
if (this.maxLtvBps !== undefined && this.liqThresholdBps !== undefined) {
|
|
366
|
-
return [
|
|
366
|
+
return [this.maxLtvBps, this.liqThresholdBps];
|
|
367
367
|
}
|
|
368
368
|
return undefined;
|
|
369
369
|
}
|