@xchainjs/xchain-aggregator 2.0.14 → 2.0.16

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/lib/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  export { Aggregator } from './aggregator';
2
- export { IProtocol, QuoteSwapParams, QuoteSwap, TxSubmitted, SwapHistory, SwapHistoryParams, SwapResume, SuccessSwap, PendingSwap, Config, ApproveParams, IsApprovedParams, } from './types';
2
+ export type { IProtocol, QuoteSwapParams, QuoteSwap, TxSubmitted, SwapHistory, SwapHistoryParams, SwapResume, SuccessSwap, PendingSwap, Config, ApproveParams, IsApprovedParams, } from './types';
package/lib/types.d.ts CHANGED
@@ -143,4 +143,4 @@ interface IProtocol {
143
143
  approveRouterToSpend(params: ApproveParams): Promise<TxSubmitted>;
144
144
  shouldBeApproved(params: IsApprovedParams): Promise<boolean>;
145
145
  }
146
- export { IProtocol, QuoteSwapParams, QuoteSwap, TxSubmitted, Protocol, SwapHistory, SuccessSwap, PendingSwap, SwapResume, SwapHistoryParams, ApproveParams, IsApprovedParams, };
146
+ export type { IProtocol, QuoteSwapParams, QuoteSwap, TxSubmitted, Protocol, SwapHistory, SuccessSwap, PendingSwap, SwapResume, SwapHistoryParams, ApproveParams, IsApprovedParams, };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xchainjs/xchain-aggregator",
3
3
  "description": "Protocol aggregator to make actions in different protocols",
4
- "version": "2.0.14",
4
+ "version": "2.0.16",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
7
7
  "module": "lib/index.esm.js",
@@ -21,7 +21,7 @@
21
21
  "clean": "rm -rf .turbo && rm -rf lib",
22
22
  "build": "yarn clean && rollup -c --bundleConfigAsCjs",
23
23
  "build:release": "yarn exec rm -rf release && yarn pack && yarn exec \"mkdir release && tar zxvf package.tgz --directory release && rm package.tgz\"",
24
- "e2e": "jest --config jest.config.e2e.js",
24
+ "e2e": "jest --config jest.config.e2e.mjs",
25
25
  "test": "jest"
26
26
  },
27
27
  "publishConfig": {
@@ -31,24 +31,24 @@
31
31
  "dependencies": {
32
32
  "@chainflip/sdk": "^1.9.2",
33
33
  "@trpc/server": "^10.45.2",
34
- "@xchainjs/xchain-client": "2.0.3",
35
- "@xchainjs/xchain-mayachain": "3.0.3",
36
- "@xchainjs/xchain-mayachain-amm": "4.0.12",
37
- "@xchainjs/xchain-mayachain-query": "2.0.5",
38
- "@xchainjs/xchain-thorchain": "3.0.7",
39
- "@xchainjs/xchain-thorchain-amm": "3.0.12",
40
- "@xchainjs/xchain-thorchain-query": "2.0.5",
41
- "@xchainjs/xchain-util": "2.0.2",
42
- "@xchainjs/xchain-wallet": "2.0.10"
34
+ "@xchainjs/xchain-client": "2.0.5",
35
+ "@xchainjs/xchain-mayachain": "3.0.5",
36
+ "@xchainjs/xchain-mayachain-amm": "4.0.14",
37
+ "@xchainjs/xchain-mayachain-query": "2.0.7",
38
+ "@xchainjs/xchain-thorchain": "3.0.9",
39
+ "@xchainjs/xchain-thorchain-amm": "3.0.14",
40
+ "@xchainjs/xchain-thorchain-query": "2.0.7",
41
+ "@xchainjs/xchain-util": "2.0.3",
42
+ "@xchainjs/xchain-wallet": "2.0.12"
43
43
  },
44
44
  "devDependencies": {
45
- "@xchainjs/xchain-avax": "2.0.6",
46
- "@xchainjs/xchain-base": "1.0.6",
47
- "@xchainjs/xchain-bitcoin": "2.0.3",
48
- "@xchainjs/xchain-bsc": "2.0.7",
49
- "@xchainjs/xchain-ethereum": "2.0.7",
50
- "@xchainjs/xchain-kujira": "2.0.3",
51
- "axios": "1.8.4",
52
- "axios-mock-adapter": "2.1.0"
45
+ "@xchainjs/xchain-avax": "2.0.8",
46
+ "@xchainjs/xchain-base": "1.0.8",
47
+ "@xchainjs/xchain-bitcoin": "2.0.5",
48
+ "@xchainjs/xchain-bsc": "2.0.9",
49
+ "@xchainjs/xchain-ethereum": "2.0.9",
50
+ "@xchainjs/xchain-kujira": "2.0.5",
51
+ "axios": "^1.8.4",
52
+ "axios-mock-adapter": "^2.1.0"
53
53
  }
54
54
  }