@ignitionfi/spl-stake-pool 1.1.16 → 1.1.17
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 +3 -2
- 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 +3 -2
- 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 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/instructions.ts +3 -2
package/dist/index.iife.js
CHANGED
|
@@ -22649,7 +22649,7 @@ var solanaStakePool = (function (exports, node_buffer) {
|
|
|
22649
22649
|
{ pubkey: params.wsolTransientAccount, isSigner: false, isWritable: true },
|
|
22650
22650
|
{ pubkey: params.programSigner, isSigner: false, isWritable: true },
|
|
22651
22651
|
{ pubkey: (_a = params.payer) !== null && _a !== void 0 ? _a : params.fundingAccount, isSigner: true, isWritable: true },
|
|
22652
|
-
{ pubkey:
|
|
22652
|
+
{ pubkey: params.userWallet, isSigner: false, isWritable: false },
|
|
22653
22653
|
];
|
|
22654
22654
|
if (params.depositAuthority) {
|
|
22655
22655
|
keys.push({
|
|
@@ -23067,6 +23067,7 @@ var solanaStakePool = (function (exports, node_buffer) {
|
|
|
23067
23067
|
tokenProgramId: stakePool.tokenProgramId,
|
|
23068
23068
|
programSigner,
|
|
23069
23069
|
payer,
|
|
23070
|
+
userWallet: userPubkey,
|
|
23070
23071
|
}));
|
|
23071
23072
|
return {
|
|
23072
23073
|
instructions,
|