Commit graph

202 commits

Author SHA1 Message Date
julian
3566d75d58 Do token balance check before allowing send and fix some amount formatting bugs 2024-11-21 09:19:07 -06:00
julian
4594801cf3 Ensure plain addresses are parsed from qr codes. Use uri parsing everywhere with a couple small tweaks. 2024-11-19 09:25:26 -06:00
julian
16b9254761 WIP migrate flutter_libmonero to cs_monero 2024-11-05 18:54:13 -06:00
julian
412e3fdf07 Update frost and hide insecure addresses on receive page and in address list 2024-09-20 17:06:20 -06:00
julian
99e802b59e add ability to "send all" selected UTXOs when using coin control 2024-08-28 10:59:25 -06:00
julian
662bbd3099 token wallet state display bugfix on confirm send screen 2024-08-28 10:59:25 -06:00
julian
7da81d01ad pop back to token view after token send success on mobile 2024-08-27 17:08:26 -06:00
sneurlax
19cae77e2b use AddressUtils where appropriate
instead of duplicating logic
2024-08-27 16:55:19 -05:00
julian
4d1fde7671 prepare send failure logging 2024-07-30 08:43:25 -06:00
julian
f3d1611249 fixes: https://github.com/cypherstack/stack_wallet/issues/908 2024-07-22 17:12:59 -06:00
julian
7c3703ffd7 frost multi address functionality 2024-07-17 10:19:39 -06:00
julian
830fdab0c3 fix frost send for people who use multisig using a single signer 2024-07-05 13:29:28 -06:00
julian
6690581b51 limit external Qr code lib import to a single file and change colors of all qr codes 2024-06-27 13:19:30 -06:00
Julian
5b61744124 fix dialog popping up too often on desktop 2024-06-26 11:12:34 -06:00
julian
769edc3bc0 ensure only one firo ex addr popup is active at any one time 2024-06-25 15:20:55 -06:00
julian
f634ce8701 WIP firo exchange addresses 2024-06-25 14:46:36 -06:00
sneurlax
0745ee6617 Merge remote-tracking branch 'origin/staging' into arti 2024-06-22 11:42:15 -05:00
julian
6d3ce31cf6 fix desktop chans sending pop up layout 2024-06-21 16:26:50 -06:00
julian
37f23a09f5 btc testnet4 2024-06-20 10:39:22 -06:00
sneurlax
13ab2b8ffe port String extension capitalize() from flutter_native_splash to sw exts 2024-06-14 14:20:31 -05:00
julian
ed15482442 enable experimental firo public funds coin control 2024-06-04 10:08:37 -06:00
julian
9006de0f0a code style clean up and gen mocks 2024-05-27 18:01:41 -06:00
julian
e01b778778 dart fix --apply --code=prefer_relative_imports 2024-05-22 18:37:06 -06:00
julian
a82f6c3c6e coin enum finally gone 2024-05-15 15:24:02 -06:00
julian
3f4ebe0229 specific error dialog when an unrecoverable frost error has occurred 2024-05-13 08:55:27 -06:00
julian
9f4df0368a add extra info to spark transaction generating dialog and some linter clean up 2024-05-09 16:12:22 -06:00
julian
d8f6ff23d4 don't show lelantus balance on mobile if zero 2024-05-08 13:26:51 -06:00
sneurlax
c8691ac0cc fix address book contact selection
Thank you @julian for the patch,
```
Index: lib/pages/send_view/send_view.dart
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/lib/pages/send_view/send_view.dart b/lib/pages/send_view/send_view.dart
--- a/lib/pages/send_view/send_view.dart	(revision fa8829072e)
+++ b/lib/pages/send_view/send_view.dart	(date 1715103987498)
@@ -906,6 +906,10 @@
       sendToController.text = _data!.contactLabel;
       _address = _data!.address.trim();
       _addressToggleFlag = true;
+
+      WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
+        _setValidAddressProviders(_address);
+      });
     }

     if (isPaynymSend) {

```
2024-05-07 14:08:08 -05:00
julian
65941478b8 experimental navigation 2024-05-03 16:38:12 -06:00
Julian
0d3ae2a635 various frost ui flow tweaks and fixes 2024-05-03 12:22:19 -06:00
julian
832be89cab frost transaction sending ui update 2024-05-03 09:37:59 -06:00
julian
1be51a666b frost initiate tx signing screen ui polish 2024-05-03 09:37:59 -06:00
julian
4b4647e02c disable frost send all button 2024-05-03 09:37:59 -06:00
julian
969e7f2dcd simplify showing the frost flow steps qr code data 2024-05-03 09:37:59 -06:00
julian
7f0585d4f9 fix button enabled state bug 2024-05-03 09:37:59 -06:00
julian
2de96f15e0 frost send view recipients ui update 2024-05-03 09:37:59 -06:00
julian
fc3ec6aa0a frost display WU instead of vByte 2024-05-03 09:37:59 -06:00
julian
ccca53f3d8 frost flow interruption dialog 2024-05-03 09:37:59 -06:00
julian
48e05919d5 use frost step scaffold for frost send/sign flow 2024-05-03 09:37:59 -06:00
julian
92d0733005 re route frost sign tx on mobile 2024-05-03 09:37:59 -06:00
julian
3c76cc115c rough gui refactor for frost wallet creation on mobile 2024-05-03 09:37:59 -06:00
sneurlax
64b0f23910 desktop create sign tweaks
making things wider and scrollable but the qr code not overflowingly wide
2024-03-12 07:05:05 -05:00
sneurlax
0fe16638b0 pad desktop send view with ConditionalParent 2024-03-12 06:45:26 -05:00
sneurlax
181ec5e539 Revert "wrap send view content in padding"
This reverts commit 2aa3bebf78.
2024-03-11 23:05:55 -05:00
sneurlax
10233550b1 fix issue with modifying fixed-length list 2024-03-11 23:02:16 -05:00
sneurlax
77f1f346d6 override recipient input(s) padding 2024-01-25 19:04:07 -06:00
sneurlax
2aa3bebf78 wrap send view content in padding
will probably need to be adjusted for mobile...
2024-01-25 19:03:53 -06:00
julian
1e67f3585a some frost clean up 2024-01-25 02:20:37 -06:00
julian
444afb88ae WIP frost send 2024-01-23 18:33:40 -06:00
julian
85b66fd849 WIP bitcoin frost wallet addition 2024-01-19 15:38:17 -06:00