@hawksightco/hawk-sdk 1.3.124 → 1.3.126
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 +2 -0
- package/package.json +1 -1
package/dist/src/hsToMeteora.js
CHANGED
|
@@ -2290,6 +2290,7 @@ class MeteoraDlmmClaimReward2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2290
2290
|
})
|
|
2291
2291
|
.remainingAccounts(this.ix.keys.slice(10))
|
|
2292
2292
|
.instruction();
|
|
2293
|
+
console.log(`claimReward:`, JSON.stringify(claimReward, null, 2));
|
|
2293
2294
|
const sighash = util.sighash("meteora_dlmm_claim_reward_2_automation");
|
|
2294
2295
|
claimReward.data.set(sighash, 0);
|
|
2295
2296
|
// Instruction via main hawksight contract
|
|
@@ -2303,6 +2304,7 @@ class MeteoraDlmmClaimReward2Automation extends HawksightMeteoraAutomationCpi {
|
|
|
2303
2304
|
})
|
|
2304
2305
|
.remainingAccounts(claimReward.keys.slice(2))
|
|
2305
2306
|
.instruction();
|
|
2307
|
+
console.log(`claimRewardIx:`, JSON.stringify(ix, null, 2));
|
|
2306
2308
|
// Override the instruction
|
|
2307
2309
|
this._ix = ix;
|
|
2308
2310
|
});
|