@meteora-ag/dlmm 1.0.40 → 1.0.41-rc.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
@@ -5838,15 +5838,16 @@ function extensionBitmapRange() {
5838
5838
  }
5839
5839
  function findSetBit(startIndex, endIndex, binArrayBitmapExtension) {
5840
5840
  const getBinArrayOffset = (binArrayIndex) => {
5841
- return binArrayIndex > 0 ? binArrayIndex % BIN_ARRAY_BITMAP_SIZE.toNumber() - 1 : Math.abs(binArrayIndex - 1) % BIN_ARRAY_BITMAP_SIZE.toNumber();
5841
+ return binArrayIndex.gt(new (0, _anchor.BN)(0)) ? binArrayIndex.mod(BIN_ARRAY_BITMAP_SIZE) : binArrayIndex.add(new (0, _anchor.BN)(1)).neg().mod(BIN_ARRAY_BITMAP_SIZE);
5842
5842
  };
5843
5843
  const getBitmapOffset = (binArrayIndex) => {
5844
- return binArrayIndex > 0 ? binArrayIndex / BIN_ARRAY_BITMAP_SIZE.toNumber() - 1 : -(binArrayIndex + 1) / BIN_ARRAY_BITMAP_SIZE.toNumber() - 1;
5844
+ return binArrayIndex.gt(new (0, _anchor.BN)(0)) ? binArrayIndex.div(BIN_ARRAY_BITMAP_SIZE).sub(new (0, _anchor.BN)(1)) : binArrayIndex.add(new (0, _anchor.BN)(1)).neg().div(BIN_ARRAY_BITMAP_SIZE).sub(new (0, _anchor.BN)(1));
5845
5845
  };
5846
+ console.log("here", binArrayBitmapExtension.positiveBinArrayBitmap);
5846
5847
  if (startIndex <= endIndex) {
5847
5848
  for (let i = startIndex; i <= endIndex; i++) {
5848
- const binArrayOffset = getBinArrayOffset(i);
5849
- const bitmapOffset = getBitmapOffset(i);
5849
+ const binArrayOffset = getBinArrayOffset(new (0, _anchor.BN)(i)).toNumber();
5850
+ const bitmapOffset = getBitmapOffset(new (0, _anchor.BN)(i)).toNumber();
5850
5851
  const bitmapChunks = i > 0 ? binArrayBitmapExtension.positiveBinArrayBitmap[bitmapOffset] : binArrayBitmapExtension.negativeBinArrayBitmap[bitmapOffset];
5851
5852
  const bitmap = buildBitmapFromU64Arrays(bitmapChunks, 1 /* U512 */);
5852
5853
  if (bitmap.testn(binArrayOffset)) {
@@ -5855,8 +5856,8 @@ function findSetBit(startIndex, endIndex, binArrayBitmapExtension) {
5855
5856
  }
5856
5857
  } else {
5857
5858
  for (let i = startIndex; i >= endIndex; i--) {
5858
- const binArrayOffset = getBinArrayOffset(i);
5859
- const bitmapOffset = getBitmapOffset(i);
5859
+ const binArrayOffset = getBinArrayOffset(new (0, _anchor.BN)(i)).toNumber();
5860
+ const bitmapOffset = getBitmapOffset(new (0, _anchor.BN)(i)).toNumber();
5860
5861
  const bitmapChunks = i > 0 ? binArrayBitmapExtension.positiveBinArrayBitmap[bitmapOffset] : binArrayBitmapExtension.negativeBinArrayBitmap[bitmapOffset];
5861
5862
  const bitmap = buildBitmapFromU64Arrays(bitmapChunks, 1 /* U512 */);
5862
5863
  if (bitmap.testn(binArrayOffset)) {