@hawksightco/hawk-sdk 1.3.129 → 1.3.130
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/src/hsToMeteora.js +0 -6
- package/package.json +1 -1
package/dist/src/hsToMeteora.js
CHANGED
|
@@ -2551,8 +2551,6 @@ class MeteoraDlmmWithdraw2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2551
2551
|
}
|
|
2552
2552
|
const position = this.ix.keys[0].pubkey;
|
|
2553
2553
|
const lbPair = this.ix.keys[1].pubkey;
|
|
2554
|
-
console.log(`withdraw position:`, position.toString());
|
|
2555
|
-
console.log(`withdraw lbPair:`, lbPair.toString());
|
|
2556
2554
|
// Generate IX via extension contract
|
|
2557
2555
|
// @ts-ignore
|
|
2558
2556
|
const withdrawIx = yield anchor_1.Anchor.instance().iyfExtension.methods
|
|
@@ -2588,10 +2586,6 @@ class MeteoraDlmmWithdraw2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2588
2586
|
})
|
|
2589
2587
|
.remainingAccounts(withdrawIx.keys.slice(2))
|
|
2590
2588
|
.instruction();
|
|
2591
|
-
const position2 = ix.keys[3].pubkey;
|
|
2592
|
-
const lbPair2 = ix.keys[4].pubkey;
|
|
2593
|
-
console.log(`withdraw position2:`, position2.toString());
|
|
2594
|
-
console.log(`withdraw lbPair2:`, lbPair2.toString());
|
|
2595
2589
|
// Override the instruction
|
|
2596
2590
|
this._ix = ix;
|
|
2597
2591
|
});
|