@meteora-ag/dlmm 1.0.39-rc.21 → 1.0.39-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.mjs CHANGED
@@ -1231,11 +1231,6 @@ var IDL = {
1231
1231
  isMut: true,
1232
1232
  isSigner: false
1233
1233
  },
1234
- {
1235
- name: "feeOwner",
1236
- isMut: false,
1237
- isSigner: true
1238
- },
1239
1234
  {
1240
1235
  name: "tokenXProgram",
1241
1236
  isMut: false,
@@ -9925,7 +9920,9 @@ var DLMM = class {
9925
9920
  }
9926
9921
  }
9927
9922
  }
9928
- return Number(binPriceWithLastLiquidity) / (2 ** 64 - 1);
9923
+ return this.fromPricePerLamport(
9924
+ Number(binPriceWithLastLiquidity) / (2 ** 64 - 1)
9925
+ );
9929
9926
  }
9930
9927
  /** Private static method */
9931
9928
  static async getBinArrays(program, lbPairPubkey) {