@meteora-ag/dlmm 1.6.0-rc.11 → 1.6.0-rc.13
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.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18154,6 +18154,7 @@ var DLMM = class {
|
|
|
18154
18154
|
shouldClaimReward: true,
|
|
18155
18155
|
pairAddress: this.pubkey
|
|
18156
18156
|
});
|
|
18157
|
+
console.log("\u{1F680} ~ DLMM ~ rebalancePosition:", rebalancePosition);
|
|
18157
18158
|
const rebalanceStrategyBuilder = new BalancedStrategyBuilder(
|
|
18158
18159
|
new (0, _anchor.BN)(rebalancePosition.lbPair.activeId),
|
|
18159
18160
|
new (0, _anchor.BN)(rebalancePosition.lbPair.binStep),
|
|
@@ -18291,10 +18292,12 @@ var DLMM = class {
|
|
|
18291
18292
|
chunk,
|
|
18292
18293
|
activeId
|
|
18293
18294
|
);
|
|
18295
|
+
console.log("\u{1F680} ~ DLMM ~ chunkedDepositParams:", chunkedDepositParams);
|
|
18294
18296
|
const chunkedWithdrawParams = splitWithdrawParamsForChunk(
|
|
18295
18297
|
withdrawParams,
|
|
18296
18298
|
chunk
|
|
18297
18299
|
);
|
|
18300
|
+
console.log("\u{1F680} ~ DLMM ~ chunkedWithdrawParams:", chunkedWithdrawParams);
|
|
18298
18301
|
if (chunkedDepositParams.length === 0 && chunkedWithdrawParams.length === 0)
|
|
18299
18302
|
continue;
|
|
18300
18303
|
const { slices, accounts: transferHookAccounts } = this.getPotentialToken2022IxDataAndAccounts(0 /* Liquidity */);
|