@hawksightco/hawk-sdk 1.3.215 → 1.3.217

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.
@@ -1477,8 +1477,8 @@ class Transactions {
1477
1477
  const lowerBinId = positionData.lowerBinId;
1478
1478
  const upperBinId = positionData.upperBinId;
1479
1479
  const binCount = upperBinId - lowerBinId + 1;
1480
- // For ≤149 bins, delegate to existing single-TX compoundAutomationIx
1481
- if (binCount <= 149) {
1480
+ // For ≤70 bins, delegate to existing single-TX compoundAutomationIx
1481
+ if (binCount <= 70) {
1482
1482
  const singleResult = yield this.compoundAutomationIx({ connection, params, fetch: undefined });
1483
1483
  return [singleResult];
1484
1484
  }
@@ -2148,7 +2148,7 @@ class Transactions {
2148
2148
  relativeLowerBinId: params.relativeLowerBin,
2149
2149
  width: initialWidth,
2150
2150
  });
2151
- group1Ixs.push(initPositionIx);
2151
+ group2Ixs.push(initPositionIx);
2152
2152
  // Extend position length if needed (for larger positions)
2153
2153
  let currentPositionRelativeUpperBinId = params.relativeLowerBin + initialWidth - 1;
2154
2154
  const relativeUpperBinId = params.relativeLowerBin + params.width - 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawksightco/hawk-sdk",
3
- "version": "1.3.215",
3
+ "version": "1.3.217",
4
4
  "description": "Hawksight v2 SDK",
5
5
  "main": "dist/src/index.js",
6
6
  "repository": "https://github.com/ghabxph/hawk-api-client.git",