@meteora-ag/dlmm 1.0.39-rc.35 → 1.0.39-rc.36
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 +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5954,7 +5954,12 @@ function findNextBinArrayIndexWithLiquidity(swapForY, activeId, lbPairState, bin
|
|
|
5954
5954
|
">>>> finNext",
|
|
5955
5955
|
startBinArrayIndex.toNumber(),
|
|
5956
5956
|
maxBinArrayIndex.toNumber(),
|
|
5957
|
-
binArrayBitmapExtension
|
|
5957
|
+
binArrayBitmapExtension.negativeBinArrayBitmap.map(
|
|
5958
|
+
(t) => t.map((b) => b.toString())
|
|
5959
|
+
),
|
|
5960
|
+
binArrayBitmapExtension.positiveBinArrayBitmap.map(
|
|
5961
|
+
(t) => t.map((b) => b.toString())
|
|
5962
|
+
)
|
|
5958
5963
|
);
|
|
5959
5964
|
const binArrayIndex = findSetBit(
|
|
5960
5965
|
startBinArrayIndex.toNumber(),
|