@hawksightco/hawk-sdk 1.3.70 → 1.3.71
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 +8 -8
- package/package.json +1 -1
package/dist/src/hsToMeteora.js
CHANGED
|
@@ -2146,8 +2146,8 @@ class MeteoraDlmmClaimFee2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2146
2146
|
* Modifies transaction keys for the purpose of claiming transaction fees.
|
|
2147
2147
|
*/
|
|
2148
2148
|
replace() {
|
|
2149
|
-
this._ix.keys[2].pubkey = this.userPda;
|
|
2150
|
-
this._ix.keys[2].isSigner = false;
|
|
2149
|
+
// this._ix.keys[2].pubkey = this.userPda;
|
|
2150
|
+
// this._ix.keys[2].isSigner = false;
|
|
2151
2151
|
}
|
|
2152
2152
|
/**
|
|
2153
2153
|
* Replaces Meteora CPI with Hawksight CPI that calls the target Meteora CPI.
|
|
@@ -2247,8 +2247,8 @@ class MeteoraDlmmClaimReward2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2247
2247
|
* Modifies transaction keys for the purpose of claiming transaction fees.
|
|
2248
2248
|
*/
|
|
2249
2249
|
replace() {
|
|
2250
|
-
this.ix.keys[3].pubkey = this.userPda;
|
|
2251
|
-
this.ix.keys[3].isSigner = false;
|
|
2250
|
+
// this.ix.keys[3].pubkey = this.userPda;
|
|
2251
|
+
// this.ix.keys[3].isSigner = false;
|
|
2252
2252
|
}
|
|
2253
2253
|
/**
|
|
2254
2254
|
* Replaces Meteora CPI with Hawksight CPI that calls the target Meteora CPI.
|
|
@@ -2398,8 +2398,8 @@ class MeteoraDlmmDeposit2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2398
2398
|
* Modifies transaction keys for the purpose of depositing liquidity.
|
|
2399
2399
|
*/
|
|
2400
2400
|
replace() {
|
|
2401
|
-
this.ix.keys[9].pubkey = this.userPda;
|
|
2402
|
-
this.ix.keys[9].isSigner = false;
|
|
2401
|
+
// this.ix.keys[9].pubkey = this.userPda;
|
|
2402
|
+
// this.ix.keys[9].isSigner = false;
|
|
2403
2403
|
}
|
|
2404
2404
|
/**
|
|
2405
2405
|
* Replaces Meteora CPI with Hawksight CPI that calls the target Meteora CPI.
|
|
@@ -2518,8 +2518,8 @@ class MeteoraDlmmWithdraw2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2518
2518
|
* Modifies transaction keys for the purpose of withdrawing liquidity.
|
|
2519
2519
|
*/
|
|
2520
2520
|
replace() {
|
|
2521
|
-
this._ix.keys[1].pubkey = this.userPda;
|
|
2522
|
-
this._ix.keys[1].isSigner = false;
|
|
2521
|
+
// this._ix.keys[1].pubkey = this.userPda;
|
|
2522
|
+
// this._ix.keys[1].isSigner = false;
|
|
2523
2523
|
}
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Replaces Meteora CPI with Hawksight CPI that calls the target Meteora CPI.
|