@hawksightco/hawk-sdk 1.3.129 → 1.3.131

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.
@@ -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
@@ -2562,7 +2560,7 @@ class MeteoraDlmmWithdraw2Automation extends HawksightMeteoraAutomationCpi {
2562
2560
  hawksightAuthority,
2563
2561
  position,
2564
2562
  lbPair,
2565
- binArrayBitmapExtension: this.ix.keys[2].pubkey,
2563
+ binArrayBitmapExtension: addresses_1.METEORA_DLMM_PROGRAM,
2566
2564
  userTokenX: this.ix.keys[3].pubkey,
2567
2565
  userTokenY: this.ix.keys[4].pubkey,
2568
2566
  reserveX: this.ix.keys[5].pubkey,
@@ -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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawksightco/hawk-sdk",
3
- "version": "1.3.129",
3
+ "version": "1.3.131",
4
4
  "description": "Hawksight v2 SDK",
5
5
  "main": "dist/src/index.js",
6
6
  "repository": "https://github.com/ghabxph/hawk-api-client.git",