@meteora-ag/dlmm 1.0.39-rc.0 → 1.0.39-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.mjs CHANGED
@@ -9903,6 +9903,30 @@ var DLMM = class {
9903
9903
  lastValidBlockHeight
9904
9904
  }).add(syncWithMarketPriceTx);
9905
9905
  }
9906
+ async getLastPrice() {
9907
+ const { pricePerToken } = await this.getActiveBin();
9908
+ const binArrays = await this.getBinArrays();
9909
+ let count = 0;
9910
+ let binPriceWithLastLiquidity = pricePerToken;
9911
+ while (count <= binArrays.length - 1) {
9912
+ const binArray = binArrays[count];
9913
+ if (binArray) {
9914
+ const bins = binArray.account.bins;
9915
+ if (bins[bins.length - 1].liquiditySupply.gt(new BN9(0))) {
9916
+ count++;
9917
+ } else {
9918
+ const lastBinWithLiquidityIndex = bins.findIndex(
9919
+ ({ liquiditySupply }) => liquiditySupply.isZero()
9920
+ );
9921
+ binPriceWithLastLiquidity = this.fromPricePerLamport(
9922
+ bins[lastBinWithLiquidityIndex - 1].price.toNumber()
9923
+ );
9924
+ count = binArrays.length;
9925
+ }
9926
+ }
9927
+ }
9928
+ return binPriceWithLastLiquidity;
9929
+ }
9906
9930
  /** Private static method */
9907
9931
  static async getBinArrays(program, lbPairPubkey) {
9908
9932
  return program.account.binArray.all([