react-native-zano 0.2.6 → 0.2.8

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 CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.2.8 (2026-02-23)
6
+
7
+ - fixed: Remove invalid const qualifier from std::vector element types to fix Xcode 26 builds
8
+
9
+ ## 0.2.7 (2026-02-15)
10
+
11
+ - fixed: Add missing `wrap` and `auditable` fields to `AddressInfo` type
12
+
5
13
  ## 0.2.6 (2026-01-29)
6
14
 
7
15
  - changed: Update `zano_native_lib` to `239d4a39`
package/ios/ZanoModule.mm CHANGED
@@ -18,7 +18,7 @@ RCT_REMAP_METHOD(
18
18
 
19
19
  // Re-package the arguments:
20
20
  NSUInteger length = [arguments count];
21
- std::vector<const std::string> strings;
21
+ std::vector<std::string> strings;
22
22
  strings.reserve(length);
23
23
  for (NSUInteger i = 0; i < length; ++i) {
24
24
  NSString *string = [arguments objectAtIndex:i];
@@ -8,32 +8,32 @@
8
8
  <key>BinaryPath</key>
9
9
  <string>libzano-module.a</string>
10
10
  <key>LibraryIdentifier</key>
11
- <string>ios-arm64</string>
11
+ <string>ios-arm64_x86_64-simulator</string>
12
12
  <key>LibraryPath</key>
13
13
  <string>libzano-module.a</string>
14
14
  <key>SupportedArchitectures</key>
15
15
  <array>
16
16
  <string>arm64</string>
17
+ <string>x86_64</string>
17
18
  </array>
18
19
  <key>SupportedPlatform</key>
19
20
  <string>ios</string>
21
+ <key>SupportedPlatformVariant</key>
22
+ <string>simulator</string>
20
23
  </dict>
21
24
  <dict>
22
25
  <key>BinaryPath</key>
23
26
  <string>libzano-module.a</string>
24
27
  <key>LibraryIdentifier</key>
25
- <string>ios-arm64_x86_64-simulator</string>
28
+ <string>ios-arm64</string>
26
29
  <key>LibraryPath</key>
27
30
  <string>libzano-module.a</string>
28
31
  <key>SupportedArchitectures</key>
29
32
  <array>
30
33
  <string>arm64</string>
31
- <string>x86_64</string>
32
34
  </array>
33
35
  <key>SupportedPlatform</key>
34
36
  <string>ios</string>
35
- <key>SupportedPlatformVariant</key>
36
- <string>simulator</string>
37
37
  </dict>
38
38
  </array>
39
39
  <key>CFBundlePackageType</key>
@@ -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
- address: string;
26
+ wrap: boolean;
26
27
  }
27
28
  export interface ConnectivityStatus {
28
29
  is_online: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-zano",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "React Native bindings for the Zano blockchain",
5
5
  "homepage": "https://github.com/EdgeApp/react-native-zano",
6
6
  "repository": {
@@ -7,7 +7,7 @@
7
7
  struct ZanoMethod {
8
8
  const char *name;
9
9
  int argc;
10
- std::string (*method)(const std::vector<const std::string> &args);
10
+ std::string (*method)(const std::vector<std::string> &args);
11
11
  };
12
12
  extern const ZanoMethod zanoMethods[];
13
13
  extern const unsigned zanoMethodCount;