@haven-fi/solauto-sdk 1.0.130 → 1.0.132
Sign up to get free protection for your applications and to get access to all the features.
@@ -74,7 +74,7 @@ function getSolautoFeesBps(isReferred, targetLiqUtilizationRateBps, positionNetW
|
|
74
74
|
const k = 1.5;
|
75
75
|
let feeBps = 0;
|
76
76
|
if (targetLiqUtilizationRateBps !== undefined) {
|
77
|
-
feeBps =
|
77
|
+
feeBps = 10;
|
78
78
|
}
|
79
79
|
else if (positionNetWorthUsd <= minSize) {
|
80
80
|
feeBps = maxFeeBps;
|
@@ -83,7 +83,7 @@ function getRebalanceValues(state, settings, dca, currentUnixTime, supplyPrice,
|
|
83
83
|
if (state === undefined ||
|
84
84
|
state.lastUpdated <
|
85
85
|
BigInt(Math.round((0, generalUtils_2.currentUnixSeconds)() - solautoConstants_1.MIN_POSITION_STATE_FRESHNESS_SECS))) {
|
86
|
-
|
86
|
+
console.warn("Requires a fresh position state to get rebalance details");
|
87
87
|
}
|
88
88
|
const { targetRateBps, amountToDcaIn } = getTargetRateAndDcaAmount(state, settings, dca, currentUnixTime, targetLiqUtilizationRateBps);
|
89
89
|
const amountUsdToDcaIn = (0, numberUtils_1.fromBaseUnit)(BigInt(Math.round(amountToDcaIn ?? 0)), state.debt.decimals) *
|
package/package.json
CHANGED
package/src/utils/numberUtils.ts
CHANGED
@@ -104,7 +104,7 @@ export function getSolautoFeesBps(
|
|
104
104
|
let feeBps: number = 0;
|
105
105
|
|
106
106
|
if (targetLiqUtilizationRateBps !== undefined) {
|
107
|
-
feeBps =
|
107
|
+
feeBps = 10;
|
108
108
|
} else if (positionNetWorthUsd <= minSize) {
|
109
109
|
feeBps = maxFeeBps;
|
110
110
|
} else if (positionNetWorthUsd >= maxSize) {
|
@@ -183,7 +183,7 @@ export function getRebalanceValues(
|
|
183
183
|
Math.round(currentUnixSeconds() - MIN_POSITION_STATE_FRESHNESS_SECS)
|
184
184
|
)
|
185
185
|
) {
|
186
|
-
|
186
|
+
console.warn("Requires a fresh position state to get rebalance details");
|
187
187
|
}
|
188
188
|
|
189
189
|
const { targetRateBps, amountToDcaIn } = getTargetRateAndDcaAmount(
|