@swapkit/plugins 4.6.41 → 4.6.42

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.
@@ -4,6 +4,6 @@ export declare const ChainflipPlugin: {
4
4
  chainflip: (pluginParams: import("..").SwapKitPluginParams) => {
5
5
  supportedSwapkitProviders: readonly [ProviderName.CHAINFLIP, ProviderName.CHAINFLIP_STREAMING];
6
6
  } & {
7
- swap: (swapParams: RequestSwapDepositAddressParams) => Promise<any>;
7
+ swap: (swapParams: RequestSwapDepositAddressParams) => Promise<string>;
8
8
  };
9
9
  };
@@ -58,7 +58,7 @@ export declare function loadDefaultPlugins(): Promise<{
58
58
  resolve(name: string): Promise<string | null>;
59
59
  transfer(name: string, newOwner: string): Promise<string>;
60
60
  };
61
- swap(swapParams: import("@swapkit/helpers").SwapParams<"near", import("@swapkit/helpers").QuoteResponseRoute>): Promise<any>;
61
+ swap(swapParams: import("@swapkit/helpers").SwapParams<"near", import("@swapkit/helpers").QuoteResponseRoute>): Promise<string>;
62
62
  swapWithUtxos(swapParams: import("./near").SwapWithUtxosParams): Promise<string>;
63
63
  };
64
64
  solana: (pluginParams: import("./types").SwapKitPluginParams) => {
@@ -187,7 +187,7 @@ export declare function loadDefaultPlugins(): Promise<{
187
187
  chainflip: (pluginParams: import("./types").SwapKitPluginParams) => {
188
188
  supportedSwapkitProviders: readonly [import("@swapkit/helpers").ProviderName.CHAINFLIP, import("@swapkit/helpers").ProviderName.CHAINFLIP_STREAMING];
189
189
  } & {
190
- swap: (swapParams: import("./chainflip").RequestSwapDepositAddressParams) => Promise<any>;
190
+ swap: (swapParams: import("./chainflip").RequestSwapDepositAddressParams) => Promise<string>;
191
191
  };
192
192
  }>;
193
193
  export declare function loadPlugin<P extends PluginName>(pluginName: P): Promise<SKPlugins[P]>;
@@ -13,7 +13,7 @@ export declare const NearPlugin: {
13
13
  resolve(name: string): Promise<string | null>;
14
14
  transfer(name: string, newOwner: string): Promise<string>;
15
15
  };
16
- swap(swapParams: SwapParams<"near", QuoteResponseRoute>): Promise<any>;
16
+ swap(swapParams: SwapParams<"near", QuoteResponseRoute>): Promise<string>;
17
17
  /**
18
18
  * Swap using multiple UTXO inputs from different addresses.
19
19
  * Used for HD wallets (xpub-based) where UTXOs are spread across derived addresses.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "author": "swapkit-dev",
3
- "dependencies": { "@swapkit/helpers": "4.13.10", "@swapkit/toolboxes": "4.15.14", "@swapkit/utxo-signer": "2.1.3" },
3
+ "dependencies": { "@swapkit/helpers": "4.13.11", "@swapkit/toolboxes": "4.15.15", "@swapkit/utxo-signer": "2.1.3" },
4
4
  "description": "SwapKit Plugin - Chainflip",
5
5
  "devDependencies": {
6
6
  "@near-js/utils": "2.5.1",
@@ -80,5 +80,5 @@
80
80
  "type-check:go": "tsgo"
81
81
  },
82
82
  "type": "module",
83
- "version": "4.6.41"
83
+ "version": "4.6.42"
84
84
  }