@ignitionfi/spl-stake-pool 1.1.18 → 1.1.19
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.browser.cjs.js +2 -1
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.browser.esm.js +2 -1
- package/dist/index.browser.esm.js.map +1 -1
- package/dist/index.cjs.js +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +2 -1
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +1 -1
- package/dist/index.iife.min.js.map +1 -1
- package/dist/instructions.d.ts +1 -1
- package/package.json +1 -1
- package/src/instructions.ts +4 -2
|
@@ -1447,7 +1447,6 @@ class StakePoolInstruction {
|
|
|
1447
1447
|
{ pubkey: params.wsolTransientAccount, isSigner: false, isWritable: true },
|
|
1448
1448
|
{ pubkey: params.programSigner, isSigner: false, isWritable: true },
|
|
1449
1449
|
{ pubkey: (_a = params.payer) !== null && _a !== void 0 ? _a : params.fundingAccount, isSigner: true, isWritable: true },
|
|
1450
|
-
{ pubkey: ASSOCIATED_TOKEN_PROGRAM_ID, isSigner: false, isWritable: false },
|
|
1451
1450
|
{ pubkey: params.userWallet, isSigner: false, isWritable: false },
|
|
1452
1451
|
];
|
|
1453
1452
|
if (params.depositAuthority) {
|
|
@@ -1457,6 +1456,8 @@ class StakePoolInstruction {
|
|
|
1457
1456
|
isWritable: false,
|
|
1458
1457
|
});
|
|
1459
1458
|
}
|
|
1459
|
+
// Associated Token Program must be last - only needed in transaction for CPI routing
|
|
1460
|
+
keys.push({ pubkey: ASSOCIATED_TOKEN_PROGRAM_ID, isSigner: false, isWritable: false });
|
|
1460
1461
|
return new TransactionInstruction({
|
|
1461
1462
|
programId: params.programId,
|
|
1462
1463
|
keys,
|