@swapkit/core 1.0.0-rc.84 → 1.0.0-rc.86
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +59 -53
- package/dist/index.es.js.map +1 -1
- package/package.json +9 -9
- package/src/client/index.ts +3 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "swapkit-oss-team",
|
|
3
3
|
"dependencies": {
|
|
4
|
-
"@swapkit/helpers": "1.0.0-rc.
|
|
4
|
+
"@swapkit/helpers": "1.0.0-rc.63",
|
|
5
5
|
"@swapkit/types": "1.0.0-rc.32"
|
|
6
6
|
},
|
|
7
7
|
"description": "SwapKit Lib core",
|
|
@@ -9,19 +9,19 @@
|
|
|
9
9
|
"@vitest/coverage-istanbul": "1.0.4",
|
|
10
10
|
"vite": "5.0.7",
|
|
11
11
|
"vitest": "1.0.4",
|
|
12
|
-
"@internal/config": "
|
|
12
|
+
"@internal/config": "0.0.1",
|
|
13
13
|
"@swapkit/api": "1.0.0-rc.33",
|
|
14
14
|
"@swapkit/tokens": "1.0.0-rc.32",
|
|
15
|
-
"@swapkit/toolbox-cosmos": "1.0.0-rc.
|
|
16
|
-
"@swapkit/toolbox-evm": "1.0.0-rc.
|
|
17
|
-
"@swapkit/toolbox-utxo": "1.0.0-rc.
|
|
15
|
+
"@swapkit/toolbox-cosmos": "1.0.0-rc.70",
|
|
16
|
+
"@swapkit/toolbox-evm": "1.0.0-rc.69",
|
|
17
|
+
"@swapkit/toolbox-utxo": "1.0.0-rc.67"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@swapkit/api": "1.0.0-rc.33",
|
|
21
21
|
"@swapkit/tokens": "1.0.0-rc.32",
|
|
22
|
-
"@swapkit/toolbox-cosmos": "1.0.0-rc.
|
|
23
|
-
"@swapkit/toolbox-evm": "1.0.0-rc.
|
|
24
|
-
"@swapkit/toolbox-utxo": "1.0.0-rc.
|
|
22
|
+
"@swapkit/toolbox-cosmos": "1.0.0-rc.70",
|
|
23
|
+
"@swapkit/toolbox-evm": "1.0.0-rc.69",
|
|
24
|
+
"@swapkit/toolbox-utxo": "1.0.0-rc.67"
|
|
25
25
|
},
|
|
26
26
|
"eslintConfig": {
|
|
27
27
|
"extends": "../../../internal/eslint-config"
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"type": "module",
|
|
51
51
|
"types": "./dist/index.d.ts",
|
|
52
|
-
"version": "1.0.0-rc.
|
|
52
|
+
"version": "1.0.0-rc.86",
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "NODE_OPTIONS=--max_old_space_size=16384 vite build",
|
|
55
55
|
"clean": "rm -rf dist vite.config.ts.* .turbo node_modules",
|
package/src/client/index.ts
CHANGED
|
@@ -635,6 +635,9 @@ export class SwapKitCore<T = ''> {
|
|
|
635
635
|
connectWalletconnect = async (_chains: Chain[], _options?: any): Promise<void> => {
|
|
636
636
|
throw new SwapKitError('core_wallet_walletconnect_not_installed');
|
|
637
637
|
};
|
|
638
|
+
connectKeepkey = async (_chains: Chain[], _derivationPath: number[][]): Promise<string> => {
|
|
639
|
+
throw new SwapKitError('core_wallet_keepkey_not_installed');
|
|
640
|
+
};
|
|
638
641
|
connectKeystore = async (_chains: Chain[], _phrase: string): Promise<void> => {
|
|
639
642
|
throw new SwapKitError('core_wallet_keystore_not_installed');
|
|
640
643
|
};
|