v6.3.0 Release Candidate (#3414)
* v6.3.0 Release Candidate - the new transaction history - Radar in Apps screen - Zcash update - Flutter update - Parts of the Refactor should improve how amounts are handled in the app and fix any issue with amounts improve handling sending to aliases - Improvements for Cake Pay mobile - Bug fixes * don't use memo for note/message values * save message in QR locally in the notes field * Make stealth addresses generated from silent payment, not reliant on output index (#3420) * - fix swaps showing only on primary account - switch tron default node - privacy fixes * - enlarge destination tag and make it copiable - migrate users on hashvault - minor fix
Omar Hatem committed
Jul 21, 2026 at 04:54 UTC
544cbec0e0180e6792c44d07e037447647ce86e2
15 files changed
+152
-66
assets/tron_node_list.yml
+1
-1
@@ -1,6 +1,5 @@
1
-
2
uri: api.trongrid.io
3
- isDefault: true
3
useSSL: true
4
isEnabledForAutoSwitching: true
5
label: "TronGrid"
@@ -10,6 +9,7 @@
9
label: "PublicNode"
10
-
11
uri: trx.nownodes.io
12
+ isDefault: true
13
useSSL: true
14
isEnabledForAutoSwitching: true
15
label: "NOWNodes"
\ No newline at end of file
cw_bitcoin/lib/bitcoin_wallet_addresses.dart
+1
-1
@@ -124,7 +124,7 @@ abstract class BitcoinWalletAddressesBase extends ElectrumWalletAddresses with S
124
125
Future<PaymentURI> getPaymentRequestUri(String amount) async {
126
if (addressPageType is LightningAddressType && lightningWallet != null) {
127
- final amountSats = amount.isNotEmpty ? parseFixed(amount, 8) : null;
127
+ final amountSats = amount.isNotEmpty ? tryParseFixed(amount, 8) : null;
128
final lnUrl = getLnurlOfLightningAddress(address);
129
if (amountSats == null) {
130
return LightningPaymentRequest(address: address, lnURL: lnUrl, amount: amount);
cw_bitcoin/lib/electrum_wallet.dart
+3
-2
@@ -1536,7 +1536,7 @@ abstract class ElectrumWalletBase
1536
network: network,
1537
memo: estimatedTx.memo,
1538
inputOrdering: BitcoinOrdering.shuffle,
1539
- outputOrdering: BitcoinOrdering.none,
1539
+ outputOrdering: BitcoinOrdering.shuffle,
1540
enableRBF: !estimatedTx.spendsUnconfirmedTX,
1541
);
1542
}
@@ -1594,6 +1594,7 @@ abstract class ElectrumWalletBase
1594
isSendAll: estimatedTx.isSendAll,
1595
hasTaprootInputs: hasTaprootInputs,
1596
utxos: estimatedTx.utxos,
1597
+ derivedOutputs: updatedOutputs,
1598
publicKeys: estimatedTx.publicKeys,
1599
isViewOnly: keys.privateKey.isEmpty,
1600
)..addListener((transaction) async {
@@ -2297,7 +2298,7 @@ abstract class ElectrumWalletBase
2298
network: network,
2299
memo: memo,
2300
inputOrdering: BitcoinOrdering.shuffle,
2300
- outputOrdering: BitcoinOrdering.none,
2301
+ outputOrdering: BitcoinOrdering.shuffle,
2302
enableRBF: true,
2303
);
2304
cw_bitcoin/lib/pending_bitcoin_transaction.dart
+11
@@ -31,6 +31,7 @@ class PendingBitcoinTransaction with PendingTransaction {
31
this.hasTaprootInputs = false,
32
this.isMweb = false,
33
this.utxos = const [],
34
+ this.derivedOutputs = const [],
35
this.publicKeys,
36
this.commitOverride,
37
this.unsignedPsbt,
@@ -47,6 +48,9 @@ class PendingBitcoinTransaction with PendingTransaction {
48
final bool hasTaprootInputs;
49
final bool isViewOnly;
50
List<UtxoWithAddress> utxos;
51
+
52
+ final List<BitcoinOutput> derivedOutputs;
53
+
54
bool isMweb;
55
String? changeAddressOverride;
56
String? idOverride;
@@ -79,6 +83,13 @@ class PendingBitcoinTransaction with PendingTransaction {
83
84
bool get hasSilentPayment => _tx.hasSilentPayment;
85
86
+ List<String?> get stealthAddresses => derivedOutputs
87
+ .where((out) => !out.isChange)
88
+ .map((out) => out.isSilentPayment
89
+ ? out.address.toAddress(network ?? BitcoinNetwork.mainnet)
90
+ : null)
91
+ .toList();
92
+
93
PendingChange? get change {
94
try {
95
final change = _tx.outputs.firstWhere((out) => out.isChange);
cw_monero/lib/monero_wallet_addresses.dart
+2
-2
@@ -90,7 +90,7 @@ abstract class MoneroWalletAddressesBase extends WalletAddresses with Store {
90
addressesMap.clear();
91
addressInfos.clear();
92
93
- accountList.accounts.forEach((account) async {
93
+ for (final account in accountList.accounts) {
94
await _subaddressList.update(accountIndex: account.id);
95
_subaddressList.subaddresses.forEach((subaddress) {
96
addressesMap[subaddress.address] = subaddress.label;
@@ -102,7 +102,7 @@ abstract class MoneroWalletAddressesBase extends WalletAddresses with Store {
102
address: subaddress.address,
103
label: subaddress.label));
104
});
105
- });
105
+ }
106
107
await saveAddressesInBox();
108
} catch (e) {
ios/Podfile.lock
+18
-23
@@ -188,8 +188,6 @@ PODS:
188
- Flutter
189
- wakelock_plus (0.0.1):
190
- Flutter
191
- - warp_api (0.0.1):
192
- - Flutter
191
- YttriumWrapper (0.8.35)
192
193
DEPENDENCIES:
@@ -236,7 +234,6 @@ DEPENDENCIES:
234
- universal_ble (from `.symlinks/plugins/universal_ble/darwin`)
235
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
236
- wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`)
239
- - warp_api (from `.symlinks/plugins/warp_api/ios`)
237
238
SPEC REPOS:
239
https://github.com/CocoaPods/Specs.git:
@@ -341,8 +338,6 @@ EXTERNAL SOURCES:
338
:path: ".symlinks/plugins/url_launcher_ios/ios"
339
wakelock_plus:
340
:path: ".symlinks/plugins/wakelock_plus/ios"
344
- warp_api:
345
- :path: ".symlinks/plugins/warp_api/ios"
341
342
SPEC CHECKSUMS:
343
AppAuth: d4f13a8fe0baf391b2108511793e4b479691fb73
@@ -351,17 +346,17 @@ SPEC CHECKSUMS:
346
breez_sdk_spark_flutter: ed3b6709b8ce9b40309d8728640eade5b19e8a0d
347
connectivity_plus: cb623214f4e1f6ef8fe7403d580fdad517d2f7dd
348
CryptoSwift: e64e11850ede528a02a0f3e768cec8e9d92ecb90
354
- cw_decred: 9c0e1df74745b51a1289ec5e91fb9e24b68fa14a
355
- cw_mweb: 22cd01dfb8ad2d39b15332006f22046aaa8352a3
356
- device_display_brightness: 1510e72c567a1f6ce6ffe393dcd9afd1426034f7
357
- device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
358
- devicelocale: 35ba84dc7f45f527c3001535d8c8d104edd5d926
349
+ cw_decred: a02cf30175a46971c1e2fa22c48407534541edc6
350
+ cw_mweb: 3aea2fb35b2bd04d8b2d21b83216f3b8fb768d85
351
+ device_display_brightness: 04374ebd653619292c1d996f00f42877ea19f17f
352
+ device_info_plus: 335f3ce08d2e174b9fdc3db3db0f4e3b1f66bd89
353
+ devicelocale: bd64aa714485a8afdaded0892c1e7d5b7f680cf8
354
DKImagePickerController: 946cec48c7873164274ecc4624d19e3da4c1ef3c
355
DKPhotoGallery: b3834fecb755ee09a593d7c9e389d8b5d6deed60
356
dnssec_proof: d461cac7bd3301eb7447f87936745a0c1ae0a67e
357
fast_scanner: 2cb1ad3e69e645e9980fb4961396ce5804caa3e3
358
file_picker: 9b3292d7c8bc68c8a7bf8eb78f730e49c8efc517
364
- Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
359
+ Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
360
flutter_inappwebview_ios: b89ba3482b96fb25e00c967aae065701b66e9b99
361
flutter_local_authentication: 989278c681612f1ee0e36019e149137f114b9d7f
362
flutter_local_notifications: a5a732f069baa862e728d839dd2ebb904737effb
@@ -374,32 +369,32 @@ SPEC CHECKSUMS:
369
GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1
370
GTMAppAuth: f69bd07d68cd3b766125f7e072c45d7340dea0de
371
GTMSessionFetcher: 5aea5ba6bd522a239e236100971f10cb71b96ab6
377
- image_picker_ios: 7fe1ff8e34c1790d6fff70a32484959f563a928a
372
+ image_picker_ios: e0ece4aa2a75771a7de3fa735d26d90817041326
373
in_app_review: 7dd1ea365263f834b8464673f9df72c80c17c937
374
integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e
380
- local_auth_darwin: d2e8c53ef0c4f43c646462e3415432c4dab3ae19
375
+ local_auth_darwin: c3ee6cce0a8d56be34c8ccb66ba31f7f180aaebb
376
OrderedSet: e539b66b644ff081c73a262d24ad552a69be3a94
382
- package_info_plus: c0502532a26c7662a62a356cebe2692ec5fe4ec4
377
+ package_info_plus: af8e2ca6888548050f16fa2f1938db7b5a5df499
378
payjoin_flutter: d9d4c8aa16bd5dfedb9b21d0edc8199e0187d96e
379
permission_handler_apple: 92d754bbaa7361d436db2d6c3c1c2a0fdcec462e
380
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
386
- quick_actions_ios: 4b07fb49d8d8f3518d7565fbb7a91014067a7d82
381
+ quick_actions_ios: 500fcc11711d9f646739093395c4ae8eec25f779
382
reown_yttrium: cee334ade64725b1d83f7b34c706a6aae2696d58
383
rive_common: dd421daaf9ae69f0125aa761dd96abd278399952
384
rlz: 3f4022361f540a5c26d9d2474fea1d2455b69d8d
385
SDWebImage: 9f177d83116802728e122410fb25ad88f5c7608a
391
- sensitive_clipboard: d4866e5d176581536c27bb1618642ee83adca986
392
- share_plus: 8b6f8b3447e494cca5317c8c3073de39b3600d1f
393
- shared_preferences_foundation: 5086985c1d43c5ba4d5e69a4e8083a389e2909e6
394
- sp_scanner: eaa617fa827396b967116b7f1f43549ca62e9a12
395
- sqflite_darwin: 5a7236e3b501866c1c9befc6771dfd73ffb8702d
386
+ sensitive_clipboard: 161e9abc3d56b3131309d8a321eb4690a803c16b
387
+ share_plus: 50da8cb520a8f0f65671c6c6a99b3617ed10a58a
388
+ shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb
389
+ sp_scanner: b1bc9321690980bdb44bba7ec85d5543e716d1b5
390
+ sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0
391
sqlite3: 73513155ec6979715d3904ef53a8d68892d4032b
397
- sqlite3_flutter_libs: 86f82662868ee26ff3451f73cac9c5fc2a1f57fa
392
+ sqlite3_flutter_libs: 83f8e9f5b6554077f1d93119fe20ebaa5f3a9ef1
393
SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
394
torch_dart: f4620705d10f05492fab047f2fa1c3a600e7d17d
395
uni_links: ed8c961e47ed9ce42b6d91e1de8049e38a4b3152
401
- universal_ble: 45519b2aeafe62761e2c6309f8927edb5288b914
402
- url_launcher_ios: 694010445543906933d732453a59da0a173ae33d
396
+ universal_ble: a322ebabee64f0ec27a313e89a5dd6967f37a60f
397
+ url_launcher_ios: 7a95fa5b60cc718a708b8f2966718e93db0cef1b
398
wakelock_plus: e29112ab3ef0b318e58cfa5c32326458be66b556
399
YttriumWrapper: 31e937fe9fbe0f1314d2ca6be9ce9b379a059966
400
lib/bitcoin/cw_bitcoin.dart
+10
-18
@@ -687,28 +687,20 @@ class CWBitcoin extends Bitcoin {
687
}
688
689
List<Output> updateOutputs(PendingTransaction pendingTransaction, List<Output> outputs) {
690
- if (pendingTransaction is PendingLightningTransaction) return outputs;
691
-
692
- final pendingTx = pendingTransaction as PendingBitcoinTransaction;
693
-
694
- if (!pendingTx.hasSilentPayment) {
690
+ if (pendingTransaction is! PendingBitcoinTransaction || !pendingTransaction.hasSilentPayment) {
691
return outputs;
692
}
693
698
- final updatedOutputs = outputs.map((output) {
699
- try {
700
- final pendingOut = pendingTx.outputs[outputs.indexOf(output)];
701
- final updatedOutput = output;
702
-
703
- updatedOutput.stealthAddress = P2trAddress.fromScriptPubkey(script: pendingOut.scriptPubKey)
704
- .toAddress(BitcoinNetwork.mainnet);
705
- return updatedOutput;
706
- } catch (_) {}
707
-
708
- return output;
709
- }).toList();
694
+ final stealthAddresses = pendingTransaction.stealthAddresses;
695
+ if (stealthAddresses.length != outputs.length) {
696
+ printV("well, that shouldn't happen");
697
+ return outputs;
698
+ }
699
711
- return updatedOutputs;
700
+ for (var i = 0; i < outputs.length; i++) {
701
+ outputs[i].stealthAddress = stealthAddresses[i];
702
+ }
703
+ return outputs;
704
}
705
706
@override
lib/entities/default_settings_migration.dart
+24
-3
@@ -10,7 +10,6 @@ import 'package:cake_wallet/entities/fiat_api_mode.dart';
10
import 'package:cake_wallet/entities/fiat_currency.dart';
11
import 'package:cake_wallet/entities/fs_migration.dart';
12
import 'package:cake_wallet/entities/haven_seed_store.dart';
13
-import 'package:cake_wallet/entities/node_list.dart';
13
import 'package:cake_wallet/entities/preferences_key.dart';
14
import 'package:cake_wallet/entities/secret_store_key.dart';
15
import 'package:cake_wallet/monero/monero.dart';
@@ -46,7 +45,7 @@ const cakeWalletBitcoinCashDefaultNodeUri = 'bitcoincash.stackwallet.com:50002';
45
const nanoDefaultNodeUri = 'rpc.nano.to';
46
const nanoDefaultPowNodeUri = 'rpc.nano.to';
47
const solanaDefaultNodeUri = 'solana-mainnet.core.chainstack.com';
49
-const tronDefaultNodeUri = 'api.trongrid.io';
48
+const tronDefaultNodeUri = 'trx.nownodes.io';
49
const newCakeWalletBitcoinUri = 'btc-electrum.cakewallet.com:50002';
50
const wowneroDefaultNodeUri = 'node3.monerodevs.org:34568';
51
const zanoDefaultNodeUri = '37.27.100.59:10500';
@@ -607,6 +606,28 @@ Future<void> defaultSettingsMigration(
606
enabled: true,
607
);
608
break;
609
+ case 68:
610
+ await _changeDefaultNode(
611
+ sharedPreferences: sharedPreferences,
612
+ type: WalletType.tron,
613
+ newDefaultUri: tronDefaultNodeUri,
614
+ currentNodePreferenceKey: PreferencesKey.currentTronNodeIdKey,
615
+ useSSL: true,
616
+ oldUri: [
617
+ 'tron-rpc.publicnode.com:443',
618
+ 'api.trongrid.io',
619
+ ],
620
+ );
621
+ await _changeDefaultNode(
622
+ sharedPreferences: sharedPreferences,
623
+ type: WalletType.monero,
624
+ newDefaultUri: newCakeWalletMoneroUri,
625
+ currentNodePreferenceKey: PreferencesKey.currentNodeIdKey,
626
+ useSSL: true,
627
+ trusted: true,
628
+ oldUri: ['nodes.hashvault.pro:18081'],
629
+ );
630
+ break;
631
default:
632
break;
633
}
@@ -663,7 +684,7 @@ Future<void> _changeDefaultNode({
684
} else {
685
final currentNode = nodes.firstWhereOrNull((node) => node.id == currentNodeId);
686
shouldReplace =
666
- currentNode == null || (oldUri?.any((e) => currentNode!.uriRaw.contains(e)) ?? true);
687
+ currentNode == null || (oldUri?.any((e) => currentNode.uriRaw.contains(e)) ?? true);
688
}
689
690
if (shouldReplace) {
lib/exchange/provider/trocador_exchange_provider.dart
+1
-1
@@ -539,7 +539,7 @@ class TrocadorExchangeProvider extends ExchangeProvider {
539
}
540
541
Future<Uri> _getUri(String path, Map<String, String> queryParams) async {
542
- final uri = Uri.http(onionApiAuthority, path, queryParams);
542
+ final uri = Uri.https(onionApiAuthority, path, queryParams);
543
544
if (useTorOnly) return uri;
545
lib/main.dart
+1
-1
@@ -315,7 +315,7 @@ Future<void> initializeAppConfigs({bool loadWallet = true}) async {
315
payjoinSessionSource: payjoinSessionSource,
316
anonpayInvoiceInfo: anonpayInvoiceInfo,
317
havenSeedStore: havenSeedStore,
318
- initialMigrationVersion: 67,
318
+ initialMigrationVersion: 68,
319
);
320
}
321
lib/new-ui/pages/send_page.dart
+15
-2
@@ -241,7 +241,9 @@ class _NewSendPageState extends State<NewSendPage> {
241
widget.initialPaymentRequest!.scheme.toLowerCase()) {
242
_addressControllers[0].text = widget.initialPaymentRequest!.address;
243
_amountControllers[0].text = widget.initialPaymentRequest!.amount;
244
- _memoControllers[0].text = widget.initialPaymentRequest!.note;
244
+ // _memoControllers[0].text = widget.initialPaymentRequest!.note;
245
+ _applyNote(widget.initialPaymentRequest!.note, 0);
246
+
247
final contractAddress = widget.initialPaymentRequest!.contractAddress;
248
if (contractAddress != null && contractAddress.isNotEmpty) {
249
WidgetsBinding.instance.addPostFrameCallback((_) {
@@ -1308,7 +1310,9 @@ class _NewSendPageState extends State<NewSendPage> {
1310
);
1311
} catch (e) {}
1312
}
1311
- _memoControllers[_selectedOutput].text = paymentRequest.note;
1313
+ // _memoControllers[_selectedOutput].text = paymentRequest.note;
1314
+
1315
+ _applyNote(paymentRequest.note, _selectedOutput);
1316
}
1317
1318
Future<void> _handleSwapFlow(
@@ -1456,6 +1460,15 @@ class _NewSendPageState extends State<NewSendPage> {
1460
1461
String _wrapAmount(String amount, int maxChars) =>
1462
amount.length <= maxChars ? amount : "${amount.substring(0, maxChars - 3)}...";
1463
+
1464
+ // TODO: make a separate variable for memo in payment request model
1465
+ void _applyNote(String note, int selectedOutput) {
1466
+ if (widget.sendViewModel.hasMemos && note.length <= widget.sendViewModel.maxMemoLength) {
1467
+ widget.sendViewModel.outputs[selectedOutput].memo = note;
1468
+ } else {
1469
+ widget.sendViewModel.outputs[selectedOutput].note = note;
1470
+ }
1471
+ }
1472
}
1473
1474
class SendHelpPage extends StatelessWidget {
lib/new-ui/widgets/swap_page/swap_send_external_modal.dart
+55
-4
@@ -1,4 +1,5 @@
1
import 'package:cake_wallet/generated/i18n.dart';
2
+import 'package:cake_wallet/new-ui/widgets/copy_wrapper.dart';
3
import 'package:cake_wallet/new-ui/widgets/new_primary_button.dart';
4
import 'package:cake_wallet/new-ui/widgets/receive_page/receive_top_bar.dart';
5
import 'package:cake_wallet/new-ui/widgets/swap_page/swap_modal_header.dart';
@@ -9,6 +10,7 @@ import 'package:cake_wallet/view_model/exchange/exchange_trade_view_model.dart';
10
import 'package:cw_core/crypto_currency.dart';
11
import 'package:cw_core/payment_uris.dart';
12
import 'package:flutter/material.dart';
13
+import 'package:flutter/services.dart';
14
15
class SwapSendExternalModal extends StatefulWidget {
16
const SwapSendExternalModal(
@@ -166,10 +168,59 @@ class _SwapSendExternalModalState extends State<SwapSendExternalModal> {
168
),
169
)),
170
if (widget.exchangeTradeViewModel.trade.extraId != null)
169
- Text(
170
- "${S.of(context).destination_tag} ${widget.exchangeTradeViewModel.trade.extraId}",
171
- style: TextStyle(
172
- fontSize: 12, color: Theme.of(context).colorScheme.onSurfaceVariant),
171
+ CopyWrapper(
172
+ data: ClipboardData(
173
+ text: widget.exchangeTradeViewModel.trade.extraId!),
174
+ builder: (context, copied) => Container(
175
+ width: double.infinity,
176
+ decoration: BoxDecoration(
177
+ color: Theme.of(context).colorScheme.surfaceContainer,
178
+ borderRadius: BorderRadius.circular(12),
179
+ ),
180
+ child: Padding(
181
+ padding: const EdgeInsets.all(16),
182
+ child: Column(
183
+ mainAxisSize: MainAxisSize.min,
184
+ spacing: 8,
185
+ children: [
186
+ Text(
187
+ S.of(context).destination_tag,
188
+ textAlign: TextAlign.center,
189
+ style: TextStyle(
190
+ fontSize: 14,
191
+ fontWeight: FontWeight.w500,
192
+ color: Theme.of(context).colorScheme.onSurfaceVariant),
193
+ ),
194
+ Row(
195
+ mainAxisAlignment: MainAxisAlignment.center,
196
+ crossAxisAlignment: CrossAxisAlignment.start,
197
+ spacing: 8,
198
+ children: [
199
+ Flexible(
200
+ child: Text(
201
+ widget.exchangeTradeViewModel.trade.extraId!,
202
+ textAlign: TextAlign.center,
203
+ style: TextStyle(
204
+ fontSize: 18,
205
+ fontWeight: FontWeight.w600,
206
+ color: Theme.of(context).colorScheme.primary),
207
+ ),
208
+ ),
209
+ AnimatedSwitcher(
210
+ duration: const Duration(milliseconds: 200),
211
+ child: Icon(
212
+ copied ? Icons.check : Icons.copy,
213
+ key: ValueKey(copied),
214
+ size: 18,
215
+ color: Theme.of(context).colorScheme.primary,
216
+ ),
217
+ ),
218
+ ],
219
+ ),
220
+ ],
221
+ ),
222
+ ),
223
+ ),
224
),
225
Row(
226
spacing: 8,
lib/src/screens/connect_device/monero_hardware_wallet_passphrase_input.dart
+2
@@ -34,6 +34,8 @@ class MoneroHardwareWalletPassphraseInputModal extends StatelessWidget {
34
BaseTextFormField(
35
controller: controller,
36
hintText: S.of(context).passphrase_raw,
37
+ autocorrect: false,
38
+ enableSuggestions: false,
39
),
40
const SizedBox(),
41
NewPrimaryButton(
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.2.1"
18
-MONERO_COM_BUILD_NUMBER=4161
17
+MONERO_COM_VERSION="6.3.0"
18
+MONERO_COM_BUILD_NUMBER=4162
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.2.1"
25
-CAKEWALLET_BUILD_NUMBER=4413
24
+CAKEWALLET_VERSION="6.3.0"
25
+CAKEWALLET_BUILD_NUMBER=4414
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.2.1"
16
-MONERO_COM_BUILD_NUMBER=167
15
+MONERO_COM_VERSION="6.3.0"
16
+MONERO_COM_BUILD_NUMBER=168
17
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
18
19
CAKEWALLET_NAME="Cake Wallet"
20
-CAKEWALLET_VERSION="6.2.1"
21
-CAKEWALLET_BUILD_NUMBER=423
20
+CAKEWALLET_VERSION="6.3.0"
21
+CAKEWALLET_BUILD_NUMBER=424
22
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
23
24