@meteora-ag/dlmm 1.0.35-rc.5 → 1.0.35-rc.7

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.mjs CHANGED
@@ -6948,14 +6948,13 @@ var DLMM = class {
6948
6948
  program.programId
6949
6949
  );
6950
6950
  const account = await program.account.lbPair.fetchNullable(lbPairKey);
6951
- if (!account) {
6952
- return false;
6953
- }
6954
- if (account.parameters.baseFactor === baseFactor.toNumber()) {
6951
+ if (account && account.parameters.baseFactor === baseFactor.toNumber()) {
6955
6952
  return lbPairKey;
6956
6953
  }
6957
- } catch {
6958
- return false;
6954
+ return null;
6955
+ } catch (error) {
6956
+ console.log("\u{1F680} ~ DLMM ~ error:", error);
6957
+ return null;
6959
6958
  }
6960
6959
  }
6961
6960
  /**