@getpara/web-sdk 1.17.0 → 1.18.1

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.
@@ -101,7 +101,7 @@ function executeMessage(ctx, message) {
101
101
  }
102
102
  case "ED25519_SIGN": {
103
103
  const { share, walletId, userId, base64Bytes } = params;
104
- return walletUtils.ed25519Sign(ctx, share, userId, walletId, base64Bytes);
104
+ return withRetry(() => walletUtils.ed25519Sign(ctx, share, userId, walletId, base64Bytes));
105
105
  }
106
106
  case "ED25519_PREKEYGEN": {
107
107
  const { email } = params;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpara/web-sdk",
3
- "version": "1.17.0",
3
+ "version": "1.18.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,8 +8,8 @@
8
8
  "wasm_exec.js"
9
9
  ],
10
10
  "dependencies": {
11
- "@getpara/core-sdk": "1.17.0",
12
- "@getpara/user-management-client": "1.17.0",
11
+ "@getpara/core-sdk": "1.18.1",
12
+ "@getpara/user-management-client": "1.18.1",
13
13
  "base64url": "3.0.1",
14
14
  "buffer": "6.0.3",
15
15
  "cbor-web": "8.1.0",
@@ -35,5 +35,5 @@
35
35
  "dist",
36
36
  "package.json"
37
37
  ],
38
- "gitHead": "857cb45a49040c475fa7431f36134b0d5cb630f5"
38
+ "gitHead": "557c66d9085b97952c1ddc207f26c50eaa9af2f8"
39
39
  }