@0dotxyz/p0-ts-sdk 2.3.0-alpha.6 → 2.3.0-alpha.7

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/vendor.d.cts CHANGED
@@ -26994,6 +26994,12 @@ interface TransactionParams {
26994
26994
  feeFromInputMint?: boolean;
26995
26995
  outputAccount?: Pubkey;
26996
26996
  titanSwapVersion?: SwapVersion;
26997
+ /**
26998
+ * `true` leaves a wSOL output as wrapped SOL (the wSOL SPL token) instead of
26999
+ * unwrapping it to native lamports. Default `false`. Only has an effect when
27000
+ * `outputMint == wSOL`; ignored otherwise. Requires `titanSwapVersion=3`.
27001
+ */
27002
+ outputWsol?: boolean;
26997
27003
  }
26998
27004
  declare enum SwapVersion {
26999
27005
  V2 = 2,
package/dist/vendor.d.ts CHANGED
@@ -26994,6 +26994,12 @@ interface TransactionParams {
26994
26994
  feeFromInputMint?: boolean;
26995
26995
  outputAccount?: Pubkey;
26996
26996
  titanSwapVersion?: SwapVersion;
26997
+ /**
26998
+ * `true` leaves a wSOL output as wrapped SOL (the wSOL SPL token) instead of
26999
+ * unwrapping it to native lamports. Default `false`. Only has an effect when
27000
+ * `outputMint == wSOL`; ignored otherwise. Requires `titanSwapVersion=3`.
27001
+ */
27002
+ outputWsol?: boolean;
26997
27003
  }
26998
27004
  declare enum SwapVersion {
26999
27005
  V2 = 2,