@acala-network/chopsticks 0.13.2 → 0.13.3
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/cjs/server.js +1 -1
- package/dist/esm/server.js +1 -1
- package/package.json +4 -4
package/dist/cjs/server.js
CHANGED
|
@@ -220,7 +220,7 @@ const createServer = async (handler, port)=>{
|
|
|
220
220
|
result: resp ?? null
|
|
221
221
|
};
|
|
222
222
|
} catch (e) {
|
|
223
|
-
wsLogger.
|
|
223
|
+
wsLogger.error('Error handling request: %o', e.stack);
|
|
224
224
|
return {
|
|
225
225
|
id: req.id,
|
|
226
226
|
jsonrpc: '2.0',
|
package/dist/esm/server.js
CHANGED
|
@@ -205,7 +205,7 @@ export const createServer = async (handler, port)=>{
|
|
|
205
205
|
result: resp ?? null
|
|
206
206
|
};
|
|
207
207
|
} catch (e) {
|
|
208
|
-
wsLogger.
|
|
208
|
+
wsLogger.error('Error handling request: %o', e.stack);
|
|
209
209
|
return {
|
|
210
210
|
id: req.id,
|
|
211
211
|
jsonrpc: '2.0',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acala-network/chopsticks",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.3",
|
|
4
4
|
"author": "Acala Developers <hello@acala.network>",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"bin": "./chopsticks.cjs",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"depcheck": "npx depcheck --ignore-patterns='*.test.ts'"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@acala-network/chopsticks-core": "0.13.
|
|
16
|
-
"@acala-network/chopsticks-db": "0.13.
|
|
15
|
+
"@acala-network/chopsticks-core": "0.13.3",
|
|
16
|
+
"@acala-network/chopsticks-db": "0.13.3",
|
|
17
17
|
"@pnpm/npm-conf": "^2.2.2",
|
|
18
18
|
"@polkadot/api": "^12.3.1",
|
|
19
19
|
"@polkadot/api-augment": "^12.3.1",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@polkadot/types": "^12.3.1",
|
|
22
22
|
"@polkadot/util": "^13.0.2",
|
|
23
23
|
"@polkadot/util-crypto": "^13.0.2",
|
|
24
|
-
"axios": "^1.
|
|
24
|
+
"axios": "^1.7.4",
|
|
25
25
|
"comlink": "^4.4.1",
|
|
26
26
|
"dotenv": "^16.4.5",
|
|
27
27
|
"global-agent": "^3.0.0",
|