update build numbers fix cw_zcash import
update build numbers fix cw_zcash import
Omar committed
Jul 27, 2026 at 13:20 UTC
a612135046cc8731d31f20cad63b3960b9bb8ee8
6 files changed
+17
-17
ios/Podfile.lock
+1
-7
@@ -54,8 +54,6 @@ PODS:
54
- DKImagePickerController/PhotoGallery
55
- Flutter
56
- Flutter (1.0.0)
57
- - flutter_contacts (0.0.1):
58
- - Flutter
57
- flutter_inappwebview_ios (0.0.1):
58
- Flutter
59
- flutter_inappwebview_ios/Core (= 0.0.1)
@@ -167,7 +165,6 @@ DEPENDENCIES:
165
- fast_scanner (from `.symlinks/plugins/fast_scanner/ios`)
166
- file_picker (from `.symlinks/plugins/file_picker/ios`)
167
- Flutter (from `Flutter`)
170
- - flutter_contacts (from `.symlinks/plugins/flutter_contacts/ios`)
168
- flutter_inappwebview_ios (from `.symlinks/plugins/flutter_inappwebview_ios/ios`)
169
- flutter_local_authentication (from `.symlinks/plugins/flutter_local_authentication/ios`)
170
- flutter_local_notifications (from `.symlinks/plugins/flutter_local_notifications/ios`)
@@ -234,8 +231,6 @@ EXTERNAL SOURCES:
231
:path: ".symlinks/plugins/file_picker/ios"
232
Flutter:
233
:path: Flutter
237
- flutter_contacts:
238
- :path: ".symlinks/plugins/flutter_contacts/ios"
234
flutter_inappwebview_ios:
235
:path: ".symlinks/plugins/flutter_inappwebview_ios/ios"
236
flutter_local_authentication:
@@ -311,7 +306,6 @@ SPEC CHECKSUMS:
306
fast_scanner: 2cb1ad3e69e645e9980fb4961396ce5804caa3e3
307
file_picker: 9b3292d7c8bc68c8a7bf8eb78f730e49c8efc517
308
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
314
- flutter_contacts: 2ec1d6b62ca2869c3bbb3871bd74d4e3ef157135
309
flutter_inappwebview_ios: b89ba3482b96fb25e00c967aae065701b66e9b99
310
flutter_local_authentication: 989278c681612f1ee0e36019e149137f114b9d7f
311
flutter_local_notifications: a5a732f069baa862e728d839dd2ebb904737effb
@@ -349,4 +343,4 @@ SPEC CHECKSUMS:
343
344
PODFILE CHECKSUM: b08d7f4c8d9c64f5648599a30caea878b0f7616a
345
352
-COCOAPODS: 1.17.0
346
+COCOAPODS: 1.16.2
lib/view_model/dashboard/receive_option_view_model.dart
+1
-2
@@ -3,7 +3,6 @@ import 'package:cake_wallet/zcash/zcash.dart';
3
import 'package:cw_core/receive_page_option.dart';
4
import 'package:cw_core/wallet_base.dart';
5
import 'package:cw_core/wallet_type.dart';
6
-import 'package:cw_zcash/cw_zcash.dart';
6
import 'package:mobx/mobx.dart';
7
8
part 'receive_option_view_model.g.dart';
@@ -22,7 +21,7 @@ abstract class ReceiveOptionViewModelBase with Store {
21
: ReceivePageOption.mainnet) {
22
if (_wallet.type == WalletType.zcash) {
23
reaction<bool>(
25
- (_) => (_wallet.walletAddresses as ZcashWalletAddresses).ironwoodActive,
24
+ (_) => zcash!.ironwoodActive(_wallet.walletAddresses),
25
(_) => _syncZcashShieldedLabel(),
26
);
27
}
lib/zcash/cw_zcash.dart
+5
@@ -208,6 +208,11 @@ class CWZcash extends Zcash {
208
209
@override
210
Future<void> rescanInternalChange(WalletBase wallet) async {}
211
+
212
+ @override
213
+ bool ironwoodActive(WalletAddresses walletAddresses) {
214
+ return (walletAddresses as ZcashWalletAddresses).ironwoodActive;
215
+ }
216
}
217
218
const wordList = [
scripts/android/app_env.sh
+4
-4
@@ -14,15 +14,15 @@ TYPES=($MONERO_COM $CAKEWALLET)
14
APP_ANDROID_TYPE=$1
15
16
MONERO_COM_NAME="Monero.com"
17
-MONERO_COM_VERSION="6.3.2"
18
-MONERO_COM_BUILD_NUMBER=4163
17
+MONERO_COM_VERSION="6.4.0"
18
+MONERO_COM_BUILD_NUMBER=4164
19
MONERO_COM_BUNDLE_ID="com.monero.app"
20
MONERO_COM_PACKAGE="com.monero.app"
21
MONERO_COM_SCHEME="monero.com"
22
23
CAKEWALLET_NAME="Cake Wallet"
24
-CAKEWALLET_VERSION="6.3.2"
25
-CAKEWALLET_BUILD_NUMBER=4418
24
+CAKEWALLET_VERSION="6.4.0"
25
+CAKEWALLET_BUILD_NUMBER=4419
26
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
27
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
28
CAKEWALLET_SCHEME="cakewallet"
scripts/ios/app_env.sh
+4
-4
@@ -12,13 +12,13 @@ TYPES=($MONERO_COM $CAKEWALLET)
12
APP_IOS_TYPE=$1
13
14
MONERO_COM_NAME="Monero.com"
15
-MONERO_COM_VERSION="6.3.2"
16
-MONERO_COM_BUILD_NUMBER=169
15
+MONERO_COM_VERSION="6.4.0"
16
+MONERO_COM_BUILD_NUMBER=170
17
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
18
19
CAKEWALLET_NAME="Cake Wallet"
20
-CAKEWALLET_VERSION="6.3.2"
21
-CAKEWALLET_BUILD_NUMBER=429
20
+CAKEWALLET_VERSION="6.4.0"
21
+CAKEWALLET_BUILD_NUMBER=433
22
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
23
24
tool/configure.dart
+2
@@ -1704,6 +1704,7 @@ import 'package:cw_core/wallet_credentials.dart';
1704
import 'package:cw_core/wallet_info.dart';
1705
import 'package:cw_core/wallet_service.dart';
1706
import 'package:cw_core/receive_page_option.dart';
1707
+import 'package:cw_core/wallet_addresses.dart';
1708
1709
""";
1710
const zcashCWHeaders = """
@@ -1768,6 +1769,7 @@ abstract class Zcash {
1769
Future<int> getHeightByDate(DateTime date);
1770
bool showMissingFundsCard(WalletBase wallet);
1771
Future<void> rescanInternalChange(WalletBase wallet);
1772
+ bool ironwoodActive(WalletAddresses walletAddresses);
1773
}
1774
""";
1775