@meteora-ag/dlmm 1.0.39-rc.32 → 1.0.39-rc.33
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.d.ts +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9898,9 +9898,8 @@ var DLMM = class {
|
|
|
9898
9898
|
lastValidBlockHeight
|
|
9899
9899
|
}).add(syncWithMarketPriceTx);
|
|
9900
9900
|
}
|
|
9901
|
-
async
|
|
9902
|
-
const
|
|
9903
|
-
const sortedBinArrays = binArrays.sort(
|
|
9901
|
+
async getMaxPriceInBinArrays(binArrayAccounts) {
|
|
9902
|
+
const sortedBinArrays = binArrayAccounts.sort(
|
|
9904
9903
|
({ account: { index: indexA } }, { account: { index: indexB } }) => indexA.toNumber() - indexB.toNumber()
|
|
9905
9904
|
);
|
|
9906
9905
|
let count = sortedBinArrays.length - 1;
|