@axonfi/sdk 0.14.0 → 0.14.1

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.js CHANGED
@@ -3151,7 +3151,9 @@ function toBotConfigParams(input) {
3151
3151
  for (const sl of input.spendingLimits) {
3152
3152
  if (!ALLOWED_WINDOWS.has(BigInt(sl.windowSeconds))) {
3153
3153
  const allowed = [...ALLOWED_WINDOWS].map((w) => `${Number(w)}s`).join(", ");
3154
- throw new Error(`Invalid spending window: ${sl.windowSeconds}s. Allowed values: ${allowed}. Use WINDOW constants.`);
3154
+ throw new Error(
3155
+ `Invalid spending window: ${sl.windowSeconds}s. Allowed values: ${allowed}. Use WINDOW constants.`
3156
+ );
3155
3157
  }
3156
3158
  }
3157
3159
  return {