@silentswap/sdk 0.0.13 → 0.0.14
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/types/api.d.ts +9 -0
- package/package.json +15 -15
package/dist/types/api.d.ts
CHANGED
|
@@ -107,6 +107,15 @@ export type OrderRequest = Omit<QuoteResponse, 'authorizations' | 'facilitators'
|
|
|
107
107
|
* Array of signed facilitator instructions
|
|
108
108
|
*/
|
|
109
109
|
facilitators: Array<FacilitatorReply>;
|
|
110
|
+
/**
|
|
111
|
+
* Optional metadata object
|
|
112
|
+
*/
|
|
113
|
+
metadata?: {
|
|
114
|
+
sourceAsset: {
|
|
115
|
+
caip19: string;
|
|
116
|
+
amount: IntStr;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
110
119
|
};
|
|
111
120
|
/**
|
|
112
121
|
* Parameters for the deposit transaction
|
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.14",
|
|
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.
|
|
17
|
-
"@solar-republic/wasm-secp256k1": "^0.6.
|
|
14
|
+
"@cosmjs/amino": "^0.36.0",
|
|
15
|
+
"@cosmjs/crypto": "^0.36.0",
|
|
16
|
+
"@cosmjs/encoding": "^0.36.0",
|
|
17
|
+
"@solar-republic/wasm-secp256k1": "^0.6.3",
|
|
18
18
|
"bignumber.js": "^9.3.1",
|
|
19
19
|
"siwe": "^3.0.0",
|
|
20
|
-
"viem": "^2.
|
|
20
|
+
"viem": "^2.37.5"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@eslint/js": "^9.
|
|
24
|
-
"@stylistic/eslint-plugin": "^5.1
|
|
23
|
+
"@eslint/js": "^9.35.0",
|
|
24
|
+
"@stylistic/eslint-plugin": "^5.3.1",
|
|
25
25
|
"@tsconfig/node24": "^24.0.1",
|
|
26
|
-
"@types/node": "^24.
|
|
27
|
-
"@types/web": "^0.0.
|
|
28
|
-
"@typescript-eslint/parser": "^8.
|
|
29
|
-
"abitype": "^1.0
|
|
30
|
-
"eslint": "^9.
|
|
26
|
+
"@types/node": "^24.3.3",
|
|
27
|
+
"@types/web": "^0.0.267",
|
|
28
|
+
"@typescript-eslint/parser": "^8.43.0",
|
|
29
|
+
"abitype": "^1.1.0",
|
|
30
|
+
"eslint": "^9.35.0",
|
|
31
31
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
32
32
|
"eslint-plugin-import-x": "^4.16.1",
|
|
33
|
-
"typescript": "^5.
|
|
34
|
-
"typescript-eslint": "^8.
|
|
33
|
+
"typescript": "^5.9.2",
|
|
34
|
+
"typescript-eslint": "^8.43.0"
|
|
35
35
|
}
|
|
36
36
|
}
|