-
Notifications
You must be signed in to change notification settings - Fork 2
Cyjan ltc #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Cyjan ltc #31
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
93dd1ff
Copy bitcoin to litecoin
hectorchu aba259a
Add cw_mweb
hectorchu 7f2d4ba
Build fixes
hectorchu 0107963
Remove cw_core dep
hectorchu 8ff7ab3
Add rpcs
hectorchu 4335125
More stuff
hectorchu 58950ab
update
hectorchu eaf0b5e
more stuff
hectorchu 9bd7673
fix more build
hectorchu 9baabae
fix build
hectorchu 4d4fa15
oops
hectorchu 858df23
Update proto
hectorchu 516953d
more changes
hectorchu 1b6088c
Update proto
hectorchu 05e60d6
Add pubkey to index map
hectorchu 0e434b4
Sign non mweb inputs
hectorchu 3ef30af
small fix
hectorchu 53e4456
Bump mwebd
hectorchu c39b021
update publicuri
hectorchu 0b1e066
fix xpub
hectorchu c3a925e
Bump mwebd
hectorchu 2011271
fixes
hectorchu db3c566
Show error from mwebd start
hectorchu 7012a28
Bump mwebd
hectorchu cf8c3e4
Use unix socket for mwebd
hectorchu 71e0984
Start mwebd early
hectorchu 68b82c1
Remove artificial delay
hectorchu 21e6135
Fixed unconfirmed transaction view mounting issues
hectorchu 8ed1352
Bump mwebd
hectorchu 289dded
switch to new rpc
hectorchu 0a0af19
silly fix
hectorchu 0477770
Bump mwebd
hectorchu 0fb9be6
Don't eat psbt rpc errors
hectorchu efdda33
fix long line
hectorchu 359f085
fix: don't estabilish connections
MrCyjaneK cb53573
address review comments
MrCyjaneK 28c6b5f
Merge remote-tracking branch 'origin/main' into cyjan-ltc
MrCyjaneK 27c787c
Update lib/coins/litecoin/creation/restore_wallet.dart
MrCyjaneK a2b1ae9
Update lib/coins/litecoin/creation/new_wallet.dart
MrCyjaneK b96832c
ui: address switcher
MrCyjaneK e4735b0
remove duplicate deps
OmarHatem28 4e0979f
fix: use older dependencies, update flutter to 3.32.0, fix BDK
MrCyjaneK 234eda2
use proper assets, resize icon
MrCyjaneK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| "flutter": "3.29.3" | ||
| "flutter": "3.32.0" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "external/cake_wallet"] | ||
| path = external/cake_wallet | ||
| url = https://github.com/cake-tech/cake_wallet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| "dart.flutterSdkPath": ".fvm/versions/3.29.3" | ||
| "dart.flutterSdkPath": ".fvm/versions/3.32.0" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Submodule cake_wallet
added at
3baea4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,29 @@ | ||
| import 'package:flutter/material.dart'; | ||
|
|
||
| class Address { | ||
| Address(this.address); | ||
| Address(this.label, this.address); | ||
| final AddressLabel label; | ||
| final String address; | ||
|
|
||
| @override | ||
| String toString() { | ||
| return address; | ||
| } | ||
| } | ||
|
|
||
| abstract class AddressLabel { | ||
| String get label; | ||
| String get extra; | ||
| Widget icon(final Color color); | ||
| } | ||
|
|
||
| class UnknownLabel implements AddressLabel { | ||
| @override | ||
| String get label => ""; | ||
|
|
||
| @override | ||
| String get extra => ""; | ||
|
|
||
| @override | ||
| Widget icon(final Color color) => SizedBox.shrink(); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,20 @@ | ||
| import 'package:cupcake/coins/abstract/address.dart'; | ||
| import 'package:flutter/material.dart'; | ||
|
|
||
| class BitcoinAddress implements Address { | ||
| BitcoinAddress(this.address); | ||
| class BitcoinAddress extends Address { | ||
| BitcoinAddress(super.label, super.address); | ||
| } | ||
|
|
||
| class SegwitAddress implements AddressLabel { | ||
| @override | ||
| Widget icon(final Color color) => Icon( | ||
| Icons.currency_bitcoin, | ||
| color: color, | ||
| ); | ||
|
|
||
| @override | ||
| String get extra => ""; | ||
|
|
||
| @override | ||
| final String address; | ||
| String get label => "SegWit"; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.