@getpara/react-native-wallet 2.0.0-alpha.33 → 2.0.0-alpha.35
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.
|
@@ -48,4 +48,5 @@ export declare class ReactNativeUtils implements PlatformUtils {
|
|
|
48
48
|
walletId: string;
|
|
49
49
|
}>;
|
|
50
50
|
ed25519Sign(ctx: Ctx, userId: string, walletId: string, share: string, base64Bytes: string, _sessionCookie: string): Promise<SignatureRes>;
|
|
51
|
+
initializeWorker(_ctx: Ctx): Promise<void>;
|
|
51
52
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpara/react-native-wallet",
|
|
3
3
|
"description": "Para Wallet for React Native",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.35",
|
|
5
5
|
"author": "Para Team <hello@getpara.com> (https://getpara.com)",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@getpara/core-sdk": "2.0.0-alpha.
|
|
8
|
-
"@getpara/user-management-client": "2.0.0-alpha.
|
|
9
|
-
"@getpara/web-sdk": "2.0.0-alpha.
|
|
7
|
+
"@getpara/core-sdk": "2.0.0-alpha.35",
|
|
8
|
+
"@getpara/user-management-client": "2.0.0-alpha.35",
|
|
9
|
+
"@getpara/web-sdk": "2.0.0-alpha.35",
|
|
10
10
|
"@peculiar/webcrypto": "^1.5.0",
|
|
11
11
|
"@ungap/structured-clone": "1.3.0",
|
|
12
12
|
"node-forge": "1.3.1",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
]
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "abfec8cf9931f7a8469b09b67b5d48eee6f4cfd5"
|
|
97
97
|
}
|
|
@@ -262,4 +262,8 @@ export class ReactNativeUtils implements PlatformUtils {
|
|
|
262
262
|
const base64Sig = await ParaSignerModule.ed25519Sign(protocolId, share, base64Bytes);
|
|
263
263
|
return { signature: base64Sig };
|
|
264
264
|
}
|
|
265
|
+
|
|
266
|
+
async initializeWorker(_ctx: Ctx): Promise<void> {
|
|
267
|
+
return;
|
|
268
|
+
}
|
|
265
269
|
}
|