mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
Merge branch 'main' into CW-868-Fix-false-synchronized-status-when-the-socket-connection-fails-due-to-network-issues
This commit is contained in:
commit
f82e3b561c
21 changed files with 126 additions and 75 deletions
|
@ -1,10 +1,10 @@
|
||||||
-
|
-
|
||||||
uri: rpc.ankr.com
|
uri: rpc.ankr.com
|
||||||
is_default: true
|
|
||||||
useSSL: true
|
useSSL: true
|
||||||
-
|
-
|
||||||
uri: api.mainnet-beta.solana.com:443
|
uri: api.mainnet-beta.solana.com:443
|
||||||
useSSL: true
|
useSSL: true
|
||||||
-
|
-
|
||||||
uri: solana-rpc.publicnode.com:443
|
uri: solana-rpc.publicnode.com:443
|
||||||
useSSL: true
|
useSSL: true
|
||||||
|
is_default: true
|
|
@ -1,2 +1,3 @@
|
||||||
UI/UX enhancements
|
Support Monero Ledger
|
||||||
Bug fixes and app improvements
|
Bug fixes
|
||||||
|
New designs and better user experience
|
|
@ -1,2 +1,5 @@
|
||||||
UI/UX enhancements
|
Support Monero Ledger
|
||||||
Bug fixes and app improvements
|
Prepare for Haven removal
|
||||||
|
Improve Ethereum and Polygon sending process
|
||||||
|
Bug fixes
|
||||||
|
New designs and better user experience
|
|
@ -4,9 +4,8 @@
|
||||||
useSSL: true
|
useSSL: true
|
||||||
-
|
-
|
||||||
uri: api.trongrid.io
|
uri: api.trongrid.io
|
||||||
is_default: false
|
is_default: true
|
||||||
useSSL: true
|
useSSL: true
|
||||||
-
|
-
|
||||||
uri: trx.nownodes.io
|
uri: trx.nownodes.io
|
||||||
is_default: true
|
|
||||||
useSSL: true
|
useSSL: true
|
|
@ -1100,6 +1100,7 @@ abstract class ElectrumWalletBase
|
||||||
)..addListener((transaction) async {
|
)..addListener((transaction) async {
|
||||||
transactionHistory.addOne(transaction);
|
transactionHistory.addOne(transaction);
|
||||||
await updateBalance();
|
await updateBalance();
|
||||||
|
await updateAllUnspents();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1192,6 +1193,7 @@ abstract class ElectrumWalletBase
|
||||||
.removeWhere((utxo) => estimatedTx.utxos.any((e) => e.utxo.txHash == utxo.hash));
|
.removeWhere((utxo) => estimatedTx.utxos.any((e) => e.utxo.txHash == utxo.hash));
|
||||||
|
|
||||||
await updateBalance();
|
await updateBalance();
|
||||||
|
await updateAllUnspents();
|
||||||
});
|
});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
throw e;
|
throw e;
|
||||||
|
@ -1846,6 +1848,7 @@ abstract class ElectrumWalletBase
|
||||||
});
|
});
|
||||||
transactionHistory.addOne(transaction);
|
transactionHistory.addOne(transaction);
|
||||||
await updateBalance();
|
await updateBalance();
|
||||||
|
await updateAllUnspents();
|
||||||
});
|
});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
throw e;
|
throw e;
|
||||||
|
|
|
@ -758,6 +758,13 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
||||||
if (!mwebEnabled) return false;
|
if (!mwebEnabled) return false;
|
||||||
if (!tx.isPending) return false;
|
if (!tx.isPending) return false;
|
||||||
|
|
||||||
|
final isMwebTx = (tx.inputAddresses?.any((addr) => addr.contains("mweb")) ?? false) ||
|
||||||
|
(tx.outputAddresses?.any((addr) => addr.contains("mweb")) ?? false);
|
||||||
|
|
||||||
|
if (!isMwebTx) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
final outputId = <String>[], target = <String>{};
|
final outputId = <String>[], target = <String>{};
|
||||||
final isHash = RegExp(r'^[a-f0-9]{64}$').hasMatch;
|
final isHash = RegExp(r'^[a-f0-9]{64}$').hasMatch;
|
||||||
final spendingOutputIds = tx.inputAddresses?.where(isHash) ?? [];
|
final spendingOutputIds = tx.inputAddresses?.where(isHash) ?? [];
|
||||||
|
|
|
@ -716,10 +716,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.5"
|
version: "14.2.4"
|
||||||
watcher:
|
watcher:
|
||||||
dependency: "direct overridden"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -829,10 +829,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.5"
|
version: "14.2.4"
|
||||||
watcher:
|
watcher:
|
||||||
dependency: "direct overridden"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -874,10 +874,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.5"
|
version: "14.2.4"
|
||||||
watcher:
|
watcher:
|
||||||
dependency: "direct overridden"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -22,11 +22,11 @@ class PolygonClient extends EVMChainClient {
|
||||||
from: from,
|
from: from,
|
||||||
to: to,
|
to: to,
|
||||||
value: amount,
|
value: amount,
|
||||||
data: data,
|
// data: data,
|
||||||
maxGas: maxGas,
|
maxGas: maxGas,
|
||||||
gasPrice: gasPrice,
|
// gasPrice: gasPrice,
|
||||||
maxFeePerGas: maxFeePerGas,
|
// maxFeePerGas: maxFeePerGas,
|
||||||
maxPriorityFeePerGas: maxPriorityFeePerGas,
|
// maxPriorityFeePerGas: maxPriorityFeePerGas,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -757,10 +757,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
|
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.5"
|
version: "14.2.4"
|
||||||
watcher:
|
watcher:
|
||||||
dependency: "direct overridden"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io' show Directory, File, Platform;
|
import 'dart:io' show Directory, File, Platform;
|
||||||
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
||||||
import 'package:cake_wallet/core/key_service.dart';
|
|
||||||
import 'package:cake_wallet/core/secure_storage.dart';
|
import 'package:cake_wallet/core/secure_storage.dart';
|
||||||
import 'package:cake_wallet/entities/exchange_api_mode.dart';
|
import 'package:cake_wallet/entities/exchange_api_mode.dart';
|
||||||
import 'package:cake_wallet/entities/fiat_api_mode.dart';
|
import 'package:cake_wallet/entities/fiat_api_mode.dart';
|
||||||
import 'package:cake_wallet/entities/haven_seed_store.dart';
|
import 'package:cake_wallet/entities/haven_seed_store.dart';
|
||||||
import 'package:cake_wallet/haven/haven.dart';
|
import 'package:cake_wallet/haven/haven.dart';
|
||||||
import 'package:cw_core/cake_hive.dart';
|
|
||||||
import 'package:cw_core/pathForWallet.dart';
|
import 'package:cw_core/pathForWallet.dart';
|
||||||
import 'package:cake_wallet/entities/secret_store_key.dart';
|
import 'package:cake_wallet/entities/secret_store_key.dart';
|
||||||
import 'package:cw_core/root_dir.dart';
|
import 'package:cw_core/root_dir.dart';
|
||||||
|
@ -42,8 +40,8 @@ const polygonDefaultNodeUri = 'polygon-bor.publicnode.com';
|
||||||
const cakeWalletBitcoinCashDefaultNodeUri = 'bitcoincash.stackwallet.com:50002';
|
const cakeWalletBitcoinCashDefaultNodeUri = 'bitcoincash.stackwallet.com:50002';
|
||||||
const nanoDefaultNodeUri = 'nano.nownodes.io';
|
const nanoDefaultNodeUri = 'nano.nownodes.io';
|
||||||
const nanoDefaultPowNodeUri = 'rpc.nano.to';
|
const nanoDefaultPowNodeUri = 'rpc.nano.to';
|
||||||
const solanaDefaultNodeUri = 'rpc.ankr.com';
|
const solanaDefaultNodeUri = 'solana-rpc.publicnode.com:443';
|
||||||
const tronDefaultNodeUri = 'trx.nownodes.io';
|
const tronDefaultNodeUri = 'api.trongrid.io';
|
||||||
const newCakeWalletBitcoinUri = 'btc-electrum.cakewallet.com:50002';
|
const newCakeWalletBitcoinUri = 'btc-electrum.cakewallet.com:50002';
|
||||||
const wowneroDefaultNodeUri = 'node3.monerodevs.org:34568';
|
const wowneroDefaultNodeUri = 'node3.monerodevs.org:34568';
|
||||||
const moneroWorldNodeUri = '.moneroworld.com';
|
const moneroWorldNodeUri = '.moneroworld.com';
|
||||||
|
@ -311,6 +309,27 @@ Future<void> defaultSettingsMigration(
|
||||||
type: WalletType.ethereum,
|
type: WalletType.ethereum,
|
||||||
useSSL: true,
|
useSSL: true,
|
||||||
);
|
);
|
||||||
|
_changeDefaultNode(
|
||||||
|
nodes: nodes,
|
||||||
|
sharedPreferences: sharedPreferences,
|
||||||
|
type: WalletType.tron,
|
||||||
|
newDefaultUri: tronDefaultNodeUri,
|
||||||
|
currentNodePreferenceKey: PreferencesKey.currentTronNodeIdKey,
|
||||||
|
useSSL: true,
|
||||||
|
oldUri: [
|
||||||
|
'tron-rpc.publicnode.com:443',
|
||||||
|
'trx.nownodes.io',
|
||||||
|
],
|
||||||
|
);
|
||||||
|
_changeDefaultNode(
|
||||||
|
nodes: nodes,
|
||||||
|
sharedPreferences: sharedPreferences,
|
||||||
|
type: WalletType.solana,
|
||||||
|
newDefaultUri: solanaDefaultNodeUri,
|
||||||
|
currentNodePreferenceKey: PreferencesKey.currentSolanaNodeIdKey,
|
||||||
|
useSSL: true,
|
||||||
|
oldUri: ['rpc.ankr.com'],
|
||||||
|
);
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -332,6 +351,7 @@ Future<void> _backupHavenSeeds(Box<HavenSeedStore> havenSeedStore) async {
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// generic function for changing any wallet default node
|
/// generic function for changing any wallet default node
|
||||||
/// instead of making a new function for each change
|
/// instead of making a new function for each change
|
||||||
Future<void> _changeDefaultNode({
|
Future<void> _changeDefaultNode({
|
||||||
|
|
|
@ -134,6 +134,7 @@ class AddressResolver {
|
||||||
Future<ParsedAddress> resolve(BuildContext context, String text, CryptoCurrency currency) async {
|
Future<ParsedAddress> resolve(BuildContext context, String text, CryptoCurrency currency) async {
|
||||||
final ticker = currency.title;
|
final ticker = currency.title;
|
||||||
try {
|
try {
|
||||||
|
// twitter handle example: @username
|
||||||
if (text.startsWith('@') && !text.substring(1).contains('@')) {
|
if (text.startsWith('@') && !text.substring(1).contains('@')) {
|
||||||
if (settingsStore.lookupsTwitter) {
|
if (settingsStore.lookupsTwitter) {
|
||||||
final formattedName = text.substring(1);
|
final formattedName = text.substring(1);
|
||||||
|
@ -165,6 +166,7 @@ class AddressResolver {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Mastodon example: @username@hostname.xxx
|
||||||
if (text.startsWith('@') && text.contains('@', 1) && text.contains('.', 1)) {
|
if (text.startsWith('@') && text.contains('@', 1) && text.contains('.', 1)) {
|
||||||
if (settingsStore.lookupsMastodon) {
|
if (settingsStore.lookupsMastodon) {
|
||||||
final subText = text.substring(1);
|
final subText = text.substring(1);
|
||||||
|
|
|
@ -92,6 +92,7 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
late StreamSubscription<LedgerDevice>? _bleRefresh = null;
|
late StreamSubscription<LedgerDevice>? _bleRefresh = null;
|
||||||
|
|
||||||
bool longWait = false;
|
bool longWait = false;
|
||||||
|
Timer? _longWaitTimer;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
|
@ -108,7 +109,7 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
Timer.periodic(Duration(seconds: 1), (_) => _refreshUsbDevices());
|
Timer.periodic(Duration(seconds: 1), (_) => _refreshUsbDevices());
|
||||||
}
|
}
|
||||||
|
|
||||||
Future.delayed(Duration(seconds: 10), () {
|
_longWaitTimer = Timer(Duration(seconds: 10), () {
|
||||||
if (widget.ledgerVM.bleIsEnabled && bleDevices.isEmpty)
|
if (widget.ledgerVM.bleIsEnabled && bleDevices.isEmpty)
|
||||||
setState(() => longWait = true);
|
setState(() => longWait = true);
|
||||||
});
|
});
|
||||||
|
@ -121,6 +122,7 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
_bleStateTimer?.cancel();
|
_bleStateTimer?.cancel();
|
||||||
_usbRefreshTimer?.cancel();
|
_usbRefreshTimer?.cancel();
|
||||||
_bleRefresh?.cancel();
|
_bleRefresh?.cancel();
|
||||||
|
_longWaitTimer?.cancel();
|
||||||
|
|
||||||
widget.ledgerVM.stopScanning();
|
widget.ledgerVM.stopScanning();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
|
@ -206,7 +208,8 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
offstage: !longWait,
|
offstage: !longWait,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.only(left: 20, right: 20, bottom: 20),
|
padding: EdgeInsets.only(left: 20, right: 20, bottom: 20),
|
||||||
child: Text(S.of(context).if_you_dont_see_your_device,
|
child: Text(
|
||||||
|
S.of(context).if_you_dont_see_your_device,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
|
@ -235,7 +238,6 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
if (bleDevices.length > 0) ...[
|
if (bleDevices.length > 0) ...[
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.only(left: 20, right: 20, bottom: 20),
|
padding: EdgeInsets.only(left: 20, right: 20, bottom: 20),
|
||||||
|
@ -277,7 +279,9 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontWeight: FontWeight.w400,
|
fontWeight: FontWeight.w400,
|
||||||
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor,
|
color: Theme.of(context)
|
||||||
|
.extension<CakeTextTheme>()!
|
||||||
|
.titleColor,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -299,8 +303,12 @@ class ConnectDevicePageBodyState extends State<ConnectDevicePageBody> {
|
||||||
if (widget.allowChangeWallet) ...[
|
if (widget.allowChangeWallet) ...[
|
||||||
PrimaryButton(
|
PrimaryButton(
|
||||||
text: S.of(context).wallets,
|
text: S.of(context).wallets,
|
||||||
color: Theme.of(context).extension<WalletListTheme>()!.createNewWalletButtonBackgroundColor,
|
color: Theme.of(context)
|
||||||
textColor: Theme.of(context).extension<WalletListTheme>()!.restoreWalletButtonTextColor,
|
.extension<WalletListTheme>()!
|
||||||
|
.createNewWalletButtonBackgroundColor,
|
||||||
|
textColor: Theme.of(context)
|
||||||
|
.extension<WalletListTheme>()!
|
||||||
|
.restoreWalletButtonTextColor,
|
||||||
onPressed: _onChangeWallet,
|
onPressed: _onChangeWallet,
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
|
|
@ -99,47 +99,54 @@ abstract class LedgerViewModelBase with Store {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> connectLedger(sdk.LedgerDevice device, WalletType type) async {
|
Future<void> connectLedger(sdk.LedgerDevice device, WalletType type) async {
|
||||||
|
_isConnecting = true;
|
||||||
|
_connectingWalletType = type;
|
||||||
if (isConnected) {
|
if (isConnected) {
|
||||||
try {
|
try {
|
||||||
await _connectionChangeListener?.cancel();
|
|
||||||
_connectionChangeListener = null;
|
|
||||||
await _connection!.disconnect().catchError((_) {});
|
await _connection!.disconnect().catchError((_) {});
|
||||||
} catch (_) {}
|
} catch (_) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
final ledger = device.connectionType == sdk.ConnectionType.ble
|
final ledger = device.connectionType == sdk.ConnectionType.ble
|
||||||
? ledgerPlusBLE
|
? ledgerPlusBLE
|
||||||
: ledgerPlusUSB;
|
: ledgerPlusUSB;
|
||||||
|
|
||||||
|
if (_connectionChangeSubscription == null) {
|
||||||
if (_connectionChangeListener == null) {
|
_connectionChangeSubscription = ledger.deviceStateChanges
|
||||||
_connectionChangeListener = ledger.deviceStateChanges.listen((event) {
|
.listen(_connectionChangeListener);
|
||||||
printV('Ledger Device State Changed: $event');
|
|
||||||
if (event == sdk.BleConnectionState.disconnected) {
|
|
||||||
_connection = null;
|
|
||||||
if (type == WalletType.monero) {
|
|
||||||
monero!.resetLedgerConnection();
|
|
||||||
|
|
||||||
Navigator.of( navigatorKey.currentContext!).pushNamed(
|
|
||||||
Routes.connectDevices,
|
|
||||||
arguments: ConnectDevicePageParams(
|
|
||||||
walletType: WalletType.monero,
|
|
||||||
allowChangeWallet: true,
|
|
||||||
isReconnect: true,
|
|
||||||
onConnectDevice: (context, ledgerVM) async {
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_connection = await ledger.connect(device);
|
_connection = await ledger.connect(device);
|
||||||
|
_isConnecting = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
StreamSubscription<sdk.BleConnectionState>? _connectionChangeListener;
|
StreamSubscription<sdk.BleConnectionState>? _connectionChangeSubscription;
|
||||||
sdk.LedgerConnection? _connection;
|
sdk.LedgerConnection? _connection;
|
||||||
|
bool _isConnecting = true;
|
||||||
|
WalletType? _connectingWalletType;
|
||||||
|
|
||||||
|
void _connectionChangeListener(
|
||||||
|
sdk.BleConnectionState event, ) {
|
||||||
|
printV('Ledger Device State Changed: $event');
|
||||||
|
if (event == sdk.BleConnectionState.disconnected && !_isConnecting) {
|
||||||
|
_connection = null;
|
||||||
|
if (_connectingWalletType == WalletType.monero) {
|
||||||
|
monero!.resetLedgerConnection();
|
||||||
|
|
||||||
|
Navigator.of(navigatorKey.currentContext!).pushNamed(
|
||||||
|
Routes.connectDevices,
|
||||||
|
arguments: ConnectDevicePageParams(
|
||||||
|
walletType: WalletType.monero,
|
||||||
|
allowChangeWallet: true,
|
||||||
|
isReconnect: true,
|
||||||
|
onConnectDevice: (context, ledgerVM) async {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool get isConnected => _connection != null && !(_connection!.isDisconnected);
|
bool get isConnected => _connection != null && !(_connection!.isDisconnected);
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@ import 'package:cw_core/transaction_priority.dart';
|
||||||
import 'package:cw_core/unspent_coin_type.dart';
|
import 'package:cw_core/unspent_coin_type.dart';
|
||||||
import 'package:cake_wallet/view_model/send/output.dart';
|
import 'package:cake_wallet/view_model/send/output.dart';
|
||||||
import 'package:cake_wallet/view_model/send/send_template_view_model.dart';
|
import 'package:cake_wallet/view_model/send/send_template_view_model.dart';
|
||||||
import 'package:cw_core/utils/print_verbose.dart';
|
|
||||||
import 'package:cw_solana/solana_exceptions.dart';
|
import 'package:cw_solana/solana_exceptions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
|
@ -100,6 +99,8 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
|
||||||
|
|
||||||
outputs
|
outputs
|
||||||
.add(Output(wallet, _settingsStore, _fiatConversationStore, () => selectedCryptoCurrency));
|
.add(Output(wallet, _settingsStore, _fiatConversationStore, () => selectedCryptoCurrency));
|
||||||
|
|
||||||
|
unspentCoinsListViewModel.initialSetup();
|
||||||
}
|
}
|
||||||
|
|
||||||
@observable
|
@observable
|
||||||
|
@ -717,9 +718,9 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
|
||||||
|
|
||||||
return
|
return
|
||||||
'''${S.current.insufficient_funds_for_tx} \n\n'''
|
'''${S.current.insufficient_funds_for_tx} \n\n'''
|
||||||
'''${S.current.balance}: ${parsedErrorMessageResult.balanceEth} ETH (${parsedErrorMessageResult.balanceUsd} USD)\n\n'''
|
'''${S.current.balance}: ${parsedErrorMessageResult.balanceEth} ${walletType == WalletType.polygon ? "POL" : "ETH"} (${parsedErrorMessageResult.balanceUsd} ${fiatFromSettings.name})\n\n'''
|
||||||
'''${S.current.transaction_cost}: ${parsedErrorMessageResult.txCostEth} ETH (${parsedErrorMessageResult.txCostUsd} USD)\n\n'''
|
'''${S.current.transaction_cost}: ${parsedErrorMessageResult.txCostEth} ${walletType == WalletType.polygon ? "POL" : "ETH"} (${parsedErrorMessageResult.txCostUsd} ${fiatFromSettings.name})\n\n'''
|
||||||
'''${S.current.overshot}: ${parsedErrorMessageResult.overshotEth} ETH (${parsedErrorMessageResult.overshotUsd} USD)''';
|
'''${S.current.overshot}: ${parsedErrorMessageResult.overshotEth} ${walletType == WalletType.polygon ? "POL" : "ETH"} (${parsedErrorMessageResult.overshotUsd} ${fiatFromSettings.name})''';
|
||||||
}
|
}
|
||||||
|
|
||||||
return errorMessage;
|
return errorMessage;
|
||||||
|
|
|
@ -15,15 +15,15 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
|
||||||
APP_ANDROID_TYPE=$1
|
APP_ANDROID_TYPE=$1
|
||||||
|
|
||||||
MONERO_COM_NAME="Monero.com"
|
MONERO_COM_NAME="Monero.com"
|
||||||
MONERO_COM_VERSION="1.18.2"
|
MONERO_COM_VERSION="1.19.0"
|
||||||
MONERO_COM_BUILD_NUMBER=108
|
MONERO_COM_BUILD_NUMBER=109
|
||||||
MONERO_COM_BUNDLE_ID="com.monero.app"
|
MONERO_COM_BUNDLE_ID="com.monero.app"
|
||||||
MONERO_COM_PACKAGE="com.monero.app"
|
MONERO_COM_PACKAGE="com.monero.app"
|
||||||
MONERO_COM_SCHEME="monero.com"
|
MONERO_COM_SCHEME="monero.com"
|
||||||
|
|
||||||
CAKEWALLET_NAME="Cake Wallet"
|
CAKEWALLET_NAME="Cake Wallet"
|
||||||
CAKEWALLET_VERSION="4.21.2"
|
CAKEWALLET_VERSION="4.22.0"
|
||||||
CAKEWALLET_BUILD_NUMBER=239
|
CAKEWALLET_BUILD_NUMBER=240
|
||||||
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
|
CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet"
|
||||||
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
|
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"
|
||||||
CAKEWALLET_SCHEME="cakewallet"
|
CAKEWALLET_SCHEME="cakewallet"
|
||||||
|
|
|
@ -13,13 +13,13 @@ TYPES=($MONERO_COM $CAKEWALLET $HAVEN)
|
||||||
APP_IOS_TYPE=$1
|
APP_IOS_TYPE=$1
|
||||||
|
|
||||||
MONERO_COM_NAME="Monero.com"
|
MONERO_COM_NAME="Monero.com"
|
||||||
MONERO_COM_VERSION="1.18.2"
|
MONERO_COM_VERSION="1.19.0"
|
||||||
MONERO_COM_BUILD_NUMBER=105
|
MONERO_COM_BUILD_NUMBER=106
|
||||||
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
|
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
|
||||||
|
|
||||||
CAKEWALLET_NAME="Cake Wallet"
|
CAKEWALLET_NAME="Cake Wallet"
|
||||||
CAKEWALLET_VERSION="4.21.2"
|
CAKEWALLET_VERSION="4.22.0"
|
||||||
CAKEWALLET_BUILD_NUMBER=284
|
CAKEWALLET_BUILD_NUMBER=287
|
||||||
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
||||||
|
|
||||||
HAVEN_NAME="Haven"
|
HAVEN_NAME="Haven"
|
||||||
|
|
|
@ -14,8 +14,8 @@ if [ -n "$1" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CAKEWALLET_NAME="Cake Wallet"
|
CAKEWALLET_NAME="Cake Wallet"
|
||||||
CAKEWALLET_VERSION="1.11.2"
|
CAKEWALLET_VERSION="1.12.0"
|
||||||
CAKEWALLET_BUILD_NUMBER=40
|
CAKEWALLET_BUILD_NUMBER=41
|
||||||
|
|
||||||
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
|
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
|
||||||
echo "Wrong app type."
|
echo "Wrong app type."
|
||||||
|
|
|
@ -16,13 +16,13 @@ if [ -n "$1" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
MONERO_COM_NAME="Monero.com"
|
MONERO_COM_NAME="Monero.com"
|
||||||
MONERO_COM_VERSION="1.8.1"
|
MONERO_COM_VERSION="1.9.0"
|
||||||
MONERO_COM_BUILD_NUMBER=37
|
MONERO_COM_BUILD_NUMBER=39
|
||||||
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
|
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
|
||||||
|
|
||||||
CAKEWALLET_NAME="Cake Wallet"
|
CAKEWALLET_NAME="Cake Wallet"
|
||||||
CAKEWALLET_VERSION="1.14.2"
|
CAKEWALLET_VERSION="1.15.0"
|
||||||
CAKEWALLET_BUILD_NUMBER=98
|
CAKEWALLET_BUILD_NUMBER=99
|
||||||
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
|
||||||
|
|
||||||
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then
|
if ! [[ " ${TYPES[*]} " =~ " ${APP_MACOS_TYPE} " ]]; then
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define MyAppName "Cake Wallet"
|
#define MyAppName "Cake Wallet"
|
||||||
#define MyAppVersion "0.2.1"
|
#define MyAppVersion "0.3.0"
|
||||||
#define MyAppPublisher "Cake Labs LLC"
|
#define MyAppPublisher "Cake Labs LLC"
|
||||||
#define MyAppURL "https://cakewallet.com/"
|
#define MyAppURL "https://cakewallet.com/"
|
||||||
#define MyAppExeName "CakeWallet.exe"
|
#define MyAppExeName "CakeWallet.exe"
|
||||||
|
|
Loading…
Reference in a new issue