@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/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/vendor.cjs.map +1 -1
- package/dist/vendor.d.cts +6 -0
- package/dist/vendor.d.ts +6 -0
- package/dist/vendor.js.map +1 -1
- package/package.json +1 -1
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,
|