dop-wallet-v6 1.2.9 → 1.2.10
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/services/dop/__tests__/integration.test.d.ts +1 -0
- package/dist/services/dop/__tests__/integration.test.js +378 -0
- package/dist/services/dop/__tests__/integration.test.js.map +1 -0
- package/dist/services/dop/core/index.d.ts +1 -0
- package/dist/services/dop/core/index.js +1 -0
- package/dist/services/dop/core/index.js.map +1 -1
- package/dist/services/dop/core/react-native-init.d.ts +15 -0
- package/dist/services/dop/core/react-native-init.js +151 -0
- package/dist/services/dop/core/react-native-init.js.map +1 -0
- package/dist/services/dop/dop-txids/graphql/index.js +4 -8
- package/dist/services/dop/dop-txids/graphql/index.js.map +1 -1
- package/dist/services/dop/quick-sync/V2/graphql/index.js +4 -8
- package/dist/services/dop/quick-sync/V2/graphql/index.js.map +1 -1
- package/dist/services/dop/quick-sync/V3/graphql/index.js +4 -8
- package/dist/services/dop/quick-sync/V3/graphql/index.js.map +1 -1
- package/package.json +5 -4
- package/react-native-shims.js +7 -0
- package/fix-profile-lint.js +0 -0
- package/fix-storage-lint.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dop-wallet-v6",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "DOP Wallet SDK, compatible with mobile, browser and nodejs environments.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"postinstall": "node postinstall.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@graphql-mesh/cache-localforage": "^0.7.20",
|
|
32
31
|
"@graphql-mesh/cross-helpers": "^0.3.4",
|
|
33
32
|
"@graphql-mesh/graphql": "^0.34.16",
|
|
34
33
|
"@graphql-mesh/http": "^0.3.28",
|
|
@@ -39,18 +38,20 @@
|
|
|
39
38
|
"@graphql-mesh/types": "^0.91.14",
|
|
40
39
|
"@graphql-mesh/utils": "^0.43.22",
|
|
41
40
|
"@noble/ed25519": "^1.7.1",
|
|
42
|
-
"
|
|
43
|
-
"dop-sharedmodels-v3": "1.1.9",
|
|
41
|
+
"@react-native-async-storage/async-storage": "^1.24.0",
|
|
44
42
|
"@whatwg-node/fetch": "^0.8.4",
|
|
45
43
|
"assert": "2.0.0",
|
|
46
44
|
"axios": "1.7.2",
|
|
47
45
|
"brotli": "^1.3.3",
|
|
48
46
|
"buffer": "^6.0.3",
|
|
49
47
|
"crypto-browserify": "3.12.0",
|
|
48
|
+
"dop-engine-v3": "1.4.9",
|
|
49
|
+
"dop-sharedmodels-v3": "1.1.9",
|
|
50
50
|
"ethereum-cryptography": "^2.0.0",
|
|
51
51
|
"ethers": "6.13.1",
|
|
52
52
|
"events": "3.3.0",
|
|
53
53
|
"graphql": "^16.6.0",
|
|
54
|
+
"memdown": "^6.1.1",
|
|
54
55
|
"stream-browserify": "3.0.0"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
package/react-native-shims.js
CHANGED
|
@@ -39,4 +39,11 @@ global.crypto.subtle.digest ??= (algorithm, data) => {
|
|
|
39
39
|
* - stream-browserify:
|
|
40
40
|
* - engine uses AES encryption, which we shim with browserify-aes, which
|
|
41
41
|
* needs cipher-base, which needs stream
|
|
42
|
+
*
|
|
43
|
+
* AsyncStorage Compatibility Note:
|
|
44
|
+
* - This wallet SDK is compatible with React Native 0.60+ which moved AsyncStorage
|
|
45
|
+
* out of core into @react-native-async-storage/async-storage
|
|
46
|
+
* - GraphQL Mesh caching has been disabled to avoid legacy AsyncStorage conflicts
|
|
47
|
+
* - If you need persistent GraphQL caching in React Native, implement custom
|
|
48
|
+
* cache using @react-native-async-storage/async-storage
|
|
42
49
|
*/
|
package/fix-profile-lint.js
DELETED
|
File without changes
|
package/fix-storage-lint.js
DELETED
|
File without changes
|