@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 +2 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
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) {
|