@wireio/stake 2.1.1 → 2.2.2

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.
@@ -314,7 +314,7 @@ export async function buildOutpostAccounts(
314
314
  const userAta = await getAssociatedTokenAddress(
315
315
  liqsolMint,
316
316
  user,
317
- false,
317
+ true, // allow off curve in case squadsx vault
318
318
  TOKEN_2022_PROGRAM_ID,
319
319
  );
320
320
 
package/src/types.ts CHANGED
@@ -70,6 +70,8 @@ export interface IStakingClient {
70
70
  minBufferLamports?: bigint; // minimum gas buffer (default ~0.01 SOL)
71
71
  balanceOverrideLamports?: bigint; // for tests/custom callers
72
72
  }): Promise<bigint>
73
+
74
+ validatorDeposit(): Promise<string>
73
75
  }
74
76
 
75
77
  /**