@paraspell/swap 14.2.2 → 14.3.3
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.d.ts +3 -4
- package/dist/index.mjs +262 -691
- package/package.json +14 -14
package/dist/index.d.ts
CHANGED
|
@@ -240,17 +240,16 @@ declare const getSupportedAssetsFromImpl: <TCustomChain extends string = never>(
|
|
|
240
240
|
* Retrieves the list of assets supported for transfer from the origin chain to the exchange chain.
|
|
241
241
|
*
|
|
242
242
|
* @param from - The origin chain.
|
|
243
|
-
* @param
|
|
243
|
+
* @param exchangeInput - The exchange chain or 'Auto select'.
|
|
244
244
|
* @returns An array of supported assets.
|
|
245
245
|
*/
|
|
246
246
|
declare const getSupportedAssetsFrom: (from: TChain | undefined, exchangeInput: TExchangeInput) => TAssetInfo[];
|
|
247
247
|
|
|
248
248
|
declare const getSupportedAssetsToImpl: <TCustomChain extends string = never>(exchangeInput: TExchangeInput, to: TChain | TCustomChain | undefined, ctx?: TCustomCtx) => TAssetInfo[];
|
|
249
249
|
/**
|
|
250
|
-
* Retrieves the list of assets supported for transfer to the destination chain.
|
|
250
|
+
* Retrieves the list of assets supported for transfer from the exchange chain to the destination chain.
|
|
251
251
|
*
|
|
252
|
-
* @param
|
|
253
|
-
* @param exchange - The exchange chain or 'Auto select'.
|
|
252
|
+
* @param exchangeInput - The exchange chain or 'Auto select'.
|
|
254
253
|
* @param to - The destination chain.
|
|
255
254
|
* @returns An array of supported assets.
|
|
256
255
|
*/
|