@meteora-ag/dlmm 1.0.39-rc.33 → 1.0.39-rc.35
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/README.md +1 -1
- package/dist/index.js +38 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5848,6 +5848,10 @@ function findSetBit(startIndex, endIndex, binArrayBitmapExtension) {
|
|
|
5848
5848
|
const binArrayOffset = getBinArrayOffset(i);
|
|
5849
5849
|
const bitmapOffset = getBitmapOffset(i);
|
|
5850
5850
|
const bitmapChunks = i > 0 ? binArrayBitmapExtension.positiveBinArrayBitmap[bitmapOffset] : binArrayBitmapExtension.negativeBinArrayBitmap[bitmapOffset];
|
|
5851
|
+
console.log(
|
|
5852
|
+
"\u{1F680} ~ bitmapChunks:",
|
|
5853
|
+
bitmapChunks?.map((b) => b.toString())
|
|
5854
|
+
);
|
|
5851
5855
|
const bitmap = buildBitmapFromU64Arrays(bitmapChunks, 1 /* U512 */);
|
|
5852
5856
|
if (bitmap.testn(binArrayOffset)) {
|
|
5853
5857
|
return i;
|
|
@@ -5946,6 +5950,12 @@ function findNextBinArrayIndexWithLiquidity(swapForY, activeId, lbPairState, bin
|
|
|
5946
5950
|
startBinArrayIndex = BIN_ARRAY_BITMAP_SIZE;
|
|
5947
5951
|
}
|
|
5948
5952
|
} else {
|
|
5953
|
+
console.log(
|
|
5954
|
+
">>>> finNext",
|
|
5955
|
+
startBinArrayIndex.toNumber(),
|
|
5956
|
+
maxBinArrayIndex.toNumber(),
|
|
5957
|
+
binArrayBitmapExtension
|
|
5958
|
+
);
|
|
5949
5959
|
const binArrayIndex = findSetBit(
|
|
5950
5960
|
startBinArrayIndex.toNumber(),
|
|
5951
5961
|
maxBinArrayIndex.toNumber(),
|