@silentswap/sdk 0.0.6 → 0.0.8
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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,6 @@ export * from './caip19.js';
|
|
|
6
6
|
export { createSilentSwapClient, } from './client.js';
|
|
7
7
|
export * from './constants.js';
|
|
8
8
|
export * from './gateway-abi.js';
|
|
9
|
-
export { createHdFacilitatorGroupFromEntropy, } from './hd-facilitator-group.js';
|
|
9
|
+
export { createHdFacilitatorGroupFromEntropy, exportSecretMnemonicFromEntropy, type HdFacilitatorGroup, } from './hd-facilitator-group.js';
|
|
10
10
|
export { createSignInMessage, createEip712DocForOrder, createEip712DocForWalletGeneration, } from './sdk.js';
|
|
11
|
-
export { createViemSigner, } from './signer-adapters/viem.js';
|
|
11
|
+
export { createViemSigner, parseTransactionRequestForViem, } from './signer-adapters/viem.js';
|
package/dist/index.js
CHANGED
|
@@ -3,6 +3,6 @@ export * from './caip19.js';
|
|
|
3
3
|
export { createSilentSwapClient, } from './client.js';
|
|
4
4
|
export * from './constants.js';
|
|
5
5
|
export * from './gateway-abi.js';
|
|
6
|
-
export { createHdFacilitatorGroupFromEntropy, } from './hd-facilitator-group.js';
|
|
6
|
+
export { createHdFacilitatorGroupFromEntropy, exportSecretMnemonicFromEntropy, } from './hd-facilitator-group.js';
|
|
7
7
|
export { createSignInMessage, createEip712DocForOrder, createEip712DocForWalletGeneration, } from './sdk.js';
|
|
8
|
-
export { createViemSigner, } from './signer-adapters/viem.js';
|
|
8
|
+
export { createViemSigner, parseTransactionRequestForViem, } from './signer-adapters/viem.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silentswap/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.8",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"files": [
|
|
@@ -11,26 +11,26 @@
|
|
|
11
11
|
"build": "tsc"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@cosmjs/amino": "^0.
|
|
15
|
-
"@cosmjs/crypto": "^0.
|
|
16
|
-
"@cosmjs/encoding": "^0.
|
|
14
|
+
"@cosmjs/amino": "^0.34.0",
|
|
15
|
+
"@cosmjs/crypto": "^0.34.0",
|
|
16
|
+
"@cosmjs/encoding": "^0.34.0",
|
|
17
17
|
"@solar-republic/wasm-secp256k1": "^0.6.1",
|
|
18
|
-
"bignumber.js": "^9.3.
|
|
18
|
+
"bignumber.js": "^9.3.1",
|
|
19
19
|
"siwe": "^3.0.0",
|
|
20
20
|
"viem": "^2.31.7"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@eslint/js": "^9.
|
|
23
|
+
"@eslint/js": "^9.31.0",
|
|
24
24
|
"@stylistic/eslint-plugin": "^5.1.0",
|
|
25
25
|
"@tsconfig/node24": "^24.0.1",
|
|
26
26
|
"@types/node": "^24.0.13",
|
|
27
|
-
"@types/web": "^0.0.
|
|
28
|
-
"@typescript-eslint/parser": "^8.
|
|
27
|
+
"@types/web": "^0.0.247",
|
|
28
|
+
"@typescript-eslint/parser": "^8.37.0",
|
|
29
29
|
"abitype": "^1.0.8",
|
|
30
|
-
"eslint": "^9.
|
|
30
|
+
"eslint": "^9.31.0",
|
|
31
31
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
32
32
|
"eslint-plugin-import-x": "^4.16.1",
|
|
33
33
|
"typescript": "^5.8.3",
|
|
34
|
-
"typescript-eslint": "^8.
|
|
34
|
+
"typescript-eslint": "^8.37.0"
|
|
35
35
|
}
|
|
36
36
|
}
|