@meteora-ag/dlmm 1.6.0-rc.22 → 1.6.0-rc.23
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15283,10 +15283,10 @@ var DLMM = class {
|
|
|
15283
15283
|
const accountsToFetch = Array.from(binArraysPubkey).map(
|
|
15284
15284
|
(pubkey) => new (0, _web3js.PublicKey)(pubkey)
|
|
15285
15285
|
);
|
|
15286
|
-
const binArraysAccInfoBuffer = await chunkedGetMultipleAccountInfos(
|
|
15286
|
+
const binArraysAccInfoBuffer = (await chunkedGetMultipleAccountInfos(
|
|
15287
15287
|
this.program.provider.connection,
|
|
15288
15288
|
accountsToFetch
|
|
15289
|
-
);
|
|
15289
|
+
)).filter(Boolean);
|
|
15290
15290
|
const binArrays = await Promise.all(
|
|
15291
15291
|
binArraysAccInfoBuffer.map(async (accInfo, idx) => {
|
|
15292
15292
|
const account = decodeAccount(
|