@percolatorct/sdk 1.0.0-beta.18 → 1.0.0-beta.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.js CHANGED
@@ -4164,7 +4164,7 @@ function deriveStakeVaultAuth(pool, programId) {
4164
4164
  }
4165
4165
  function deriveDepositPda(pool, user, programId) {
4166
4166
  return PublicKey10.findProgramAddressSync(
4167
- [TEXT.encode("deposit"), pool.toBytes(), user.toBytes()],
4167
+ [TEXT.encode("stake_deposit"), pool.toBytes(), user.toBytes()],
4168
4168
  programId ?? getStakeProgramId()
4169
4169
  );
4170
4170
  }