@meteora-ag/dlmm 1.0.25 → 1.0.26

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 CHANGED
@@ -4628,6 +4628,8 @@ interface PositionData {
4628
4628
  rewardOne: BN;
4629
4629
  rewardTwo: BN;
4630
4630
  feeOwner: PublicKey;
4631
+ totalClaimedFeeXAmount: BN;
4632
+ totalClaimedFeeYAmount: BN;
4631
4633
  }
4632
4634
  interface SwapParams {
4633
4635
  /**
package/dist/index.js CHANGED
@@ -9286,7 +9286,9 @@ var DLMM = class {
9286
9286
  lowerBinId,
9287
9287
  upperBinId,
9288
9288
  liquidityShares: posShares,
9289
- lastUpdatedAt
9289
+ lastUpdatedAt,
9290
+ totalClaimedFeeXAmount,
9291
+ totalClaimedFeeYAmount
9290
9292
  } = position;
9291
9293
  const bins = this.getBinsBetweenLowerAndUpperBound(
9292
9294
  lbPair,
@@ -9355,7 +9357,9 @@ var DLMM = class {
9355
9357
  feeY,
9356
9358
  rewardOne,
9357
9359
  rewardTwo,
9358
- feeOwner
9360
+ feeOwner,
9361
+ totalClaimedFeeXAmount,
9362
+ totalClaimedFeeYAmount
9359
9363
  };
9360
9364
  }
9361
9365
  static getBinsBetweenLowerAndUpperBound(lbPair, lowerBinId, upperBinId, baseTokenDecimal, quoteTokenDecimal, lowerBinArrays, upperBinArrays) {