mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 21:19:37 +00:00
c8cfc2cff1
* [skip-ci] show mweb confirmations, show last mweb balance while syncing * potential send-all fix * [skip-ci] undo fix that didn't work * [skip-ci] undo unnecessary changes * [skip ci] add export mweb logs screen * [skip ci] cleanup * confirmation fixes * catch electrum call errors * [skip ci] undo some changes * potential electrum fixes + mweb logs display only last 10000 characters * Add question mark and link to MWEB card * updates * show negative unconfirmed mweb balanaces + other fixes [skip ci] * error handling * [skip ci] [wip] check if node supports mweb * check fee before building tx * [skip ci] minor * [skip ci] minor * mweb node setting [wip] [skip ci] * prioritize mweb coins when selecting inputs from the pool * potential connection edgecase fix * translations + mweb node fixes * don't use mweb for exchange refund address * add peg in / out labels and make 6 confs only show up for peg in / out * bump bitcoin_base version to v9 * [skip ci] fix logs page * don't fetch txinfo for non-mweb addresses [skip ci] * fix non-mweb confirmations * rename always scan to enable mweb * Update litecoin_wallet_addresses.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * Update cw_mweb.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * [skip ci] review updates pt.1 * [skip ci] minor code cleanup * [skip ci] use exception handler * exception handling [skip ci] * [skip ci] exception handling * trigger build * pegout label fixes * fix showing change transactions on peg-out * minor code cleanup and minor peg-out fix * final balance fixes * non-mweb confirmations potential fix * [skip ci] wip * trigger build --------- Co-authored-by: tuxpizza <tuxsudo@tux.pizza> Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
86 lines
2.4 KiB
Dart
86 lines
2.4 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cake_wallet/utils/exception_handler.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:path_provider/path_provider.dart';
|
|
|
|
part 'mweb_settings_view_model.g.dart';
|
|
|
|
class MwebSettingsViewModel = MwebSettingsViewModelBase with _$MwebSettingsViewModel;
|
|
|
|
abstract class MwebSettingsViewModelBase with Store {
|
|
MwebSettingsViewModelBase(this._settingsStore, this._wallet) {
|
|
mwebEnabled = bitcoin!.getMwebEnabled(_wallet);
|
|
_settingsStore.mwebAlwaysScan = mwebEnabled;
|
|
}
|
|
|
|
final SettingsStore _settingsStore;
|
|
final WalletBase _wallet;
|
|
|
|
@computed
|
|
bool get mwebCardDisplay => _settingsStore.mwebCardDisplay;
|
|
|
|
@observable
|
|
late bool mwebEnabled;
|
|
|
|
@computed
|
|
String get mwebNodeUri => _settingsStore.mwebNodeUri;
|
|
|
|
@action
|
|
void setMwebCardDisplay(bool value) {
|
|
_settingsStore.mwebCardDisplay = value;
|
|
}
|
|
|
|
@action
|
|
void setMwebNodeUri(String value) {
|
|
_settingsStore.mwebNodeUri = value;
|
|
}
|
|
|
|
@action
|
|
void setMwebEnabled(bool value) {
|
|
mwebEnabled = value;
|
|
bitcoin!.setMwebEnabled(_wallet, value);
|
|
_settingsStore.mwebAlwaysScan = value;
|
|
}
|
|
|
|
Future<bool> saveLogsLocally(String filePath) async {
|
|
try {
|
|
final appSupportPath = (await getApplicationSupportDirectory()).path;
|
|
final logsFile = File("$appSupportPath/logs/debug.log");
|
|
if (!logsFile.existsSync()) {
|
|
throw Exception('Logs file does not exist');
|
|
}
|
|
await logsFile.copy(filePath);
|
|
return true;
|
|
} catch (e, s) {
|
|
ExceptionHandler.onError(FlutterErrorDetails(
|
|
exception: e,
|
|
stack: s,
|
|
library: "Export Logs",
|
|
));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Future<String> getAbbreviatedLogs() async {
|
|
final appSupportPath = (await getApplicationSupportDirectory()).path;
|
|
final logsFile = File("$appSupportPath/logs/debug.log");
|
|
if (!logsFile.existsSync()) {
|
|
return "";
|
|
}
|
|
final logs = logsFile.readAsStringSync();
|
|
// return last 10000 characters:
|
|
return logs.substring(logs.length > 10000 ? logs.length - 10000 : 0);
|
|
}
|
|
|
|
Future<void> removeLogsLocally(String filePath) async {
|
|
final logsFile = File(filePath);
|
|
if (logsFile.existsSync()) {
|
|
await logsFile.delete();
|
|
}
|
|
}
|
|
}
|