mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* Fix stub creation * Generate MWEB addresses * Fix mweb address derivation * Use camel-case * Show utxos in tx list * A few fixes * Add spent processing * Update balance * Balance fixes * Update address records * Get rid of debounce hack * Get sending up to the confirmation box * Fee estimation * Stop the daemon if plugin is unloaded * Normal fee for non-mweb txns * Fix fee estimation for send all * Don't hash mweb addresses * More fee fixes * Broadcast mweb * Remove test files * One more * Confirm sent txns * Couple of fixes * Resign inputs after mweb create * Some more fixes * Update balance after sending * Correctly update address records * Update confs * [skip ci] updates * [skip ci] add dep overrides * working * small fix * merge fixes [skip ci] * merge fixes [skip ci] * [skip ci] minor fixes * silent payment fixes [skip ci] * updates [skip ci] * save [skip ci] * use mwebutxos box * [skip ci] lots of fixes, still testing * add rescan from height feature and test workflow build * install go * use sudo * correct package name * move building mweb higher for faster testing * install fixes * install later version of go * go fixes * testing * testing * testing * testing * testing * should workgit add .github/workflows/pr_test_build.yml * ??? * ??? pt.2 * should work, for real this time * fix tx history not persisting + update build_mwebd script * updates * fix some rescan and address gen issues * save [skip ci] * fix unconfirmed balance not updating when receiving * unspent coins / coin control fixes * coin control fixes * address balance and txCount fixes, try/catch electrum call * fix txCount for addresses * save [skip ci] * potential fixes * minor fix * minor fix - 2 * sync status fixes, potential fix for background state issue * workflow and script updates * updates * expirimental optimization * [skip ci] minor enhancements * workflow and script fixes * workflow minor cleanup [skip ci] * minor code cleanup & friendlier error message on failed tx's * balance when sending fix * experimental * more experiments * save * updates * coin control edge cases * remove neutrino.db if no litecoin wallets left after deleting * update translations * updates * minor fix * [skip ci] update translations + minor fixes * state fixes * configure fix * ui updates * translation fixes * [skip ci] addressbook updates * fix popup * fix popup2 * fix litecoin address book * fix ios mwebd build script * fix for building monero.com * minor fix * uncomment fix for state issues * potential mweb sync fix (ios) * remove print [skip ci] * electrum stream potential fix * fix ios build issues [skip ci] * connection reliability updates, update kotlin code to match swift code, minor electrum error handling * dep fixes * minor fix * more merge fixes * bitcoin_flutter removal fixes * [skip ci] fix always scan setting, swift updates * updates * fixes * small fix * small fix * fix * dart:convert != package:convert * change address fixes * update bitcoin_base to fix mweb address program checking * fix ios xcode project [skip ci] * updates * more fixes * more fixes * ensure we don't initialize mweb until we really have to * fix regression * improve mweb reliability * [skip ci] wip adress generation * wip * wip * [skip ci] wip * updates [skip ci] * ios fixes * fix workflows + ios fix * test old mweb version * update go version and mwebd hash * review updates pt.1 * Update cw_bitcoin/lib/litecoin_wallet.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * remove non-litecoin address types regex [skip ci] * more minor fixes * remove duplicate [skip ci] * Update lib/store/settings_store.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * script updates, swap params on createLitecoinWalletService * topup fix * [skip ci] wip * [skip ci] testing * [skip ci] file didn't get saved * more address generation reliability fixes * [skip ci] minor * minor code cleanup * hopefully prevents send issue * [skip ci] wip address changes * [skip ci] save * save mweb addresses, auto-restart sync process if it gets stuck [skip ci] * address generation issues mostly resolved * more performance fixes * [skip ci] * this should maybe be refactored, pt.1 * separate mweb balances, pt.2 * [skip ci] save * add translations [skip ci] * fix sending with mweb amounts * works for simple mweb-mweb case, further testing needed * found an edge case * [skip ci] make failed broadcast error message less serious * minor * capture all grpc errors and much better error handling overall * [skip ci] minor * prevent transactions with < 6 confirmations from being used + hide mweb balances if mweb is off * fix * merge fixes pt.1 [skip ci] * fix mweb tags * fix * [skip ci] fix tag spacing * fix transaction history not showing up * fix mweb crash on non-fully deleted mweb cache, sync status ETA, other connection fixes * [skip ci] minor code cleanup * [skip ci] minor code cleanup * additional cleanup * silent payments eta fixes and updates * revert sync eta changes into separate pr * [skip ci] minor * [skip ci] minor * revert sync status title * review fixes, additional cleanup * [skip ci] minor * [skip ci] minor * [skip ci] minor * trigger build * review fixes, pt.2 * check if still processing utxos before updating sync status [skip ci] * [skip ci] minor * balance fix * minor * minor * [skip ci] minor * [skip ci] fix test net btc * don't use mwebd for non-mweb tx's * [skip ci] minor cleanup * don't show all 1000+ mweb addresses on receive page * minor cleanup + additional logging --------- Co-authored-by: Hector Chu <hectorchu@gmail.com> Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> Co-authored-by: Czarek Nakamoto <cyjan@mrcyjanek.net>
203 lines
6.9 KiB
Dart
203 lines
6.9 KiB
Dart
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
import 'package:cake_wallet/src/widgets/standard_switch.dart';
|
|
import 'package:cake_wallet/themes/extensions/cake_text_theme.dart';
|
|
import 'package:cake_wallet/utils/date_picker.dart';
|
|
import 'package:cake_wallet/wownero/wownero.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:intl/intl.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/monero/monero.dart';
|
|
import 'package:cake_wallet/src/widgets/base_text_form_field.dart';
|
|
|
|
class BlockchainHeightWidget extends StatefulWidget {
|
|
BlockchainHeightWidget({
|
|
GlobalKey? key,
|
|
this.onHeightChange,
|
|
this.focusNode,
|
|
this.onHeightOrDateEntered,
|
|
this.hasDatePicker = true,
|
|
this.isSilentPaymentsScan = false,
|
|
this.isMwebScan = false,
|
|
this.toggleSingleScan,
|
|
this.doSingleScan = false,
|
|
this.bitcoinMempoolAPIEnabled,
|
|
required this.walletType,
|
|
}) : super(key: key);
|
|
|
|
final Function(int)? onHeightChange;
|
|
final Function(bool)? onHeightOrDateEntered;
|
|
final FocusNode? focusNode;
|
|
final bool hasDatePicker;
|
|
final bool isSilentPaymentsScan;
|
|
final bool isMwebScan;
|
|
final bool doSingleScan;
|
|
final Future<bool>? bitcoinMempoolAPIEnabled;
|
|
final Function()? toggleSingleScan;
|
|
final WalletType walletType;
|
|
|
|
@override
|
|
State<StatefulWidget> createState() => BlockchainHeightState();
|
|
}
|
|
|
|
class BlockchainHeightState extends State<BlockchainHeightWidget> {
|
|
final dateController = TextEditingController();
|
|
final restoreHeightController = TextEditingController();
|
|
|
|
int get height => _height;
|
|
int _height = 0;
|
|
|
|
@override
|
|
void initState() {
|
|
restoreHeightController.addListener(() {
|
|
if (restoreHeightController.text.isNotEmpty) {
|
|
widget.onHeightOrDateEntered?.call(true);
|
|
} else {
|
|
widget.onHeightOrDateEntered?.call(false);
|
|
dateController.text = '';
|
|
}
|
|
try {
|
|
_changeHeight(
|
|
restoreHeightController.text.isNotEmpty ? int.parse(restoreHeightController.text) : 0);
|
|
} catch (_) {
|
|
_changeHeight(0);
|
|
}
|
|
});
|
|
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GestureDetector(
|
|
behavior: HitTestBehavior.opaque,
|
|
onTap: () => FocusScope.of(context).unfocus(),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Row(
|
|
children: <Widget>[
|
|
Flexible(
|
|
child: Container(
|
|
padding: EdgeInsets.only(top: 20.0, bottom: 10.0),
|
|
child: BaseTextFormField(
|
|
focusNode: widget.focusNode,
|
|
controller: restoreHeightController,
|
|
keyboardType:
|
|
TextInputType.numberWithOptions(signed: false, decimal: false),
|
|
hintText: widget.isSilentPaymentsScan
|
|
? S.of(context).silent_payments_scan_from_height
|
|
: S.of(context).widgets_restore_from_blockheight,
|
|
)))
|
|
],
|
|
),
|
|
if (widget.hasDatePicker) ...[
|
|
Padding(
|
|
padding: EdgeInsets.only(top: 15, bottom: 15),
|
|
child: Text(
|
|
S.of(context).widgets_or,
|
|
style: TextStyle(
|
|
fontSize: 16.0,
|
|
fontWeight: FontWeight.w500,
|
|
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor),
|
|
),
|
|
),
|
|
Row(
|
|
children: <Widget>[
|
|
Flexible(
|
|
child: Container(
|
|
child: InkWell(
|
|
onTap: () => _selectDate(context),
|
|
child: IgnorePointer(
|
|
child: BaseTextFormField(
|
|
controller: dateController,
|
|
hintText: widget.isSilentPaymentsScan
|
|
? S.of(context).silent_payments_scan_from_date
|
|
: S.of(context).widgets_restore_from_date,
|
|
)),
|
|
),
|
|
))
|
|
],
|
|
),
|
|
if (widget.isSilentPaymentsScan)
|
|
Padding(
|
|
padding: EdgeInsets.only(top: 24),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text(
|
|
S.of(context).scan_one_block,
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.normal,
|
|
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor,
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(right: 8),
|
|
child: StandardSwitch(
|
|
value: widget.doSingleScan,
|
|
onTaped: () => widget.toggleSingleScan?.call(),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.only(left: 40, right: 40, top: 24),
|
|
child: Text(
|
|
widget.isSilentPaymentsScan
|
|
? S.of(context).silent_payments_scan_from_date_or_blockheight
|
|
: S.of(context).restore_from_date_or_blockheight,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 12,
|
|
fontWeight: FontWeight.normal,
|
|
color: Theme.of(context).hintColor),
|
|
),
|
|
)
|
|
]
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> _selectDate(BuildContext context) async {
|
|
final now = DateTime.now();
|
|
final date = await getDate(
|
|
context: context,
|
|
initialDate: now.subtract(Duration(days: 1)),
|
|
firstDate: DateTime(2014, DateTime.may),
|
|
lastDate: now);
|
|
|
|
if (date != null) {
|
|
int height;
|
|
if (widget.isMwebScan) {
|
|
height = bitcoin!.getLitecoinHeightByDate(date: date);
|
|
} else if (widget.isSilentPaymentsScan) {
|
|
height = await bitcoin!.getHeightByDate(
|
|
date: date,
|
|
bitcoinMempoolAPIEnabled: await widget.bitcoinMempoolAPIEnabled,
|
|
);
|
|
} else {
|
|
if (widget.walletType == WalletType.monero) {
|
|
height = monero!.getHeightByDate(date: date);
|
|
} else {
|
|
assert(widget.walletType == WalletType.wownero,
|
|
"unknown currency in BlockchainHeightWidget");
|
|
height = wownero!.getHeightByDate(date: date);
|
|
}
|
|
}
|
|
setState(() {
|
|
dateController.text = DateFormat('yyyy-MM-dd').format(date);
|
|
restoreHeightController.text = '$height';
|
|
_changeHeight(height);
|
|
});
|
|
}
|
|
}
|
|
|
|
void _changeHeight(int height) {
|
|
_height = height;
|
|
widget.onHeightChange?.call(height);
|
|
}
|
|
}
|