react-native-zano 0.2.5 → 0.2.7
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/CHANGELOG.md +8 -0
- package/android/src/main/jniLibs/arm64-v8a/librnzano.so +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/librnzano.so +0 -0
- package/android/src/main/jniLibs/x86/librnzano.so +0 -0
- package/android/src/main/jniLibs/x86_64/librnzano.so +0 -0
- package/ios/ZanoModule.xcframework/ios-arm64/libzano-module.a +0 -0
- package/ios/ZanoModule.xcframework/ios-arm64_x86_64-simulator/libzano-module.a +0 -0
- package/lib/scripts/update-sources.js +4 -2
- package/lib/src/types.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.7 (2026-02-15)
|
|
6
|
+
|
|
7
|
+
- fixed: Add missing `wrap` and `auditable` fields to `AddressInfo` type
|
|
8
|
+
|
|
9
|
+
## 0.2.6 (2026-01-29)
|
|
10
|
+
|
|
11
|
+
- changed: Update `zano_native_lib` to `239d4a39`
|
|
12
|
+
|
|
5
13
|
## 0.2.5 (2025-11-17)
|
|
6
14
|
|
|
7
15
|
- fixed: Show proper messages for C++ errors.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -48,7 +48,7 @@ async function main() {
|
|
|
48
48
|
await packageIosZano();
|
|
49
49
|
}
|
|
50
50
|
async function downloadSources() {
|
|
51
|
-
await (0, common_1.getRepo)('zano_native_lib', 'https://github.com/hyle-team/zano_native_lib.git', '
|
|
51
|
+
await (0, common_1.getRepo)('zano_native_lib', 'https://github.com/hyle-team/zano_native_lib.git', '239d4a391a92e6f1816540084b725499d9f4accc');
|
|
52
52
|
await (0, common_1.getRepo)('Boost-for-Android', 'https://github.com/moritz-wundke/Boost-for-Android.git', '51924ec5533a4fefb5edf99feaeded794c06a4fb');
|
|
53
53
|
// Rename the compress function in RIPEMD160.c,
|
|
54
54
|
// since that conflicts with Zlib:
|
|
@@ -253,7 +253,9 @@ async function buildIosZano(platform) {
|
|
|
253
253
|
'--config',
|
|
254
254
|
'Release',
|
|
255
255
|
'--target',
|
|
256
|
-
'install'
|
|
256
|
+
'install',
|
|
257
|
+
'--',
|
|
258
|
+
'CODE_SIGNING_ALLOWED=NO'
|
|
257
259
|
]);
|
|
258
260
|
// Link everything together into a single giant .o file:
|
|
259
261
|
console.log(`Linking zano-module.o for ${sdk} ${arch}`);
|
package/lib/src/types.d.ts
CHANGED
|
@@ -20,9 +20,10 @@ export interface WalletFiles {
|
|
|
20
20
|
}
|
|
21
21
|
export interface AddressInfo {
|
|
22
22
|
valid: boolean;
|
|
23
|
+
auditable: boolean;
|
|
23
24
|
is_integrated: boolean;
|
|
24
25
|
payment_id?: string;
|
|
25
|
-
|
|
26
|
+
wrap: boolean;
|
|
26
27
|
}
|
|
27
28
|
export interface ConnectivityStatus {
|
|
28
29
|
is_online: boolean;
|