@spacesops/wdk-react-native-core 1.0.0-beta.43 → 1.0.0-beta.45
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/README.md +3 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -74,8 +74,11 @@ npm install @spacesops/wdk-react-native-core@1.0.0-beta.40
|
|
|
74
74
|
npm install @spacesops/pear-wrk-wdk@1.1.1-beta.40 @spacesops/react-native-bare-kit@0.11.0-beta.40
|
|
75
75
|
npm install @tetherto/wdk-react-native-secure-storage
|
|
76
76
|
npm install react@">=18.0.0" react-native@">=0.70.0"
|
|
77
|
+
npm install react-native-nitro-modules@">=0.35.0"
|
|
77
78
|
```
|
|
78
79
|
|
|
80
|
+
`react-native-mmkv` (4.3.x) is bundled as a dependency; the host app must install **`react-native-nitro-modules` ≥ 0.35** so Android/iOS Nitro codegen (e.g. `HybridObject.CxxPart`) matches MMKV.
|
|
81
|
+
|
|
79
82
|
**Host app notes (beta.40):**
|
|
80
83
|
|
|
81
84
|
- You do **not** need `wire-worklet.js`, `relink-bare-addons.js`, or a direct `@spacesops/wdk-wallet-btc` dependency—bitcoin runs inside the pear worklet bundle.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spacesops/wdk-react-native-core",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.45",
|
|
4
4
|
"description": "Core functionality for React Native wallets - wallet management, balance fetching, and worklet operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"expo-crypto": "^15.0.8",
|
|
58
58
|
"@spacesops/pear-wrk-wdk": "1.1.1-beta.40",
|
|
59
59
|
"@spacesops/react-native-bare-kit": "0.11.0-beta.43",
|
|
60
|
-
"react-native-mmkv": "^4.
|
|
60
|
+
"react-native-mmkv": "^4.3.0",
|
|
61
61
|
"zod": "^3.22.0",
|
|
62
62
|
"zustand": "^5.0.9"
|
|
63
63
|
},
|
|
@@ -74,6 +74,8 @@
|
|
|
74
74
|
"typescript": "^5.3.3"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"react
|
|
77
|
+
"react": "*",
|
|
78
|
+
"react-native": ">=0.70.0",
|
|
79
|
+
"react-native-nitro-modules": ">=0.35.0"
|
|
78
80
|
}
|
|
79
81
|
}
|