Skip to content

Commit 8a93e53

Browse files
committed
Merge branch 'staging' into testing
2 parents a6be31c + 918c5c3 commit 8a93e53

File tree

567 files changed

+92292
-66995
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

567 files changed

+92292
-66995
lines changed

.gitignore

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ secp256k1.dll
7070
/lib/app_config.g.dart
7171
/android/app/src/main/app_icon-playstore.png
7272

73-
# Dart generated files (Freezed, Riverpod, GoRouter etc..)
74-
lib/**/*.g.dart
75-
lib/**/*.freezed.dart
76-
7773
## other generated project files
7874

7975
pubspec.yaml
@@ -85,6 +81,7 @@ pubspec.yaml
8581
/android/app/src/main/profile/AndroidManifest.xml
8682
/android/app/src/main/kotlin/com/cypherstack/stackwallet/MainActivity.kt
8783
/android/app/src/main/res/**/ic_launcher.png
84+
/android/app/src/main/res/**/splash.png
8885

8986
/ios/Runner/Info.plist
9087
/ios/Runner.xcodeproj/project.pbxproj
@@ -112,3 +109,16 @@ crypto_plugins/cs_monero/built_outputs
112109
crypto_plugins/cs_monero/build
113110
crypto_plugins/*.diff
114111
/devtools_options.yaml
112+
113+
# generated interfaces
114+
lib/wl_gen/generated/
115+
116+
# normally these aren't ignored but WL changes them...
117+
/linux/flutter/generated_plugin_registrant.cc
118+
/windows/flutter/generated_plugin_registrant.cc
119+
/linux/flutter/generated_plugins.cmake
120+
/windows/flutter/generated_plugins.cmake
121+
/macos/Flutter/GeneratedPluginRegistrant.swift
122+
123+
/assets/windows/mwebd.exe
124+
/tool/build

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "crypto_plugins/frostdart"]
55
path = crypto_plugins/frostdart
66
url = https://github.com/cypherstack/frostdart
7+
[submodule "crypto_plugins/flutter_libmwc"]
8+
path = crypto_plugins/flutter_libmwc
9+
url = https://github.com/cypherstack/flutter_libmwc

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,32 @@ Stack Wallet is a fully open source cryptocurrency wallet. With an easy to use u
1010
## Feature List
1111

1212
Highlights include:
13-
- 11 Different cryptocurrencies:
13+
- 23 Different cryptocurrencies:
1414
- [Bitcoin](https://bitcoin.org/en/)
15+
- Bitcoin Frost
1516
- [Bitcoin Cash](https://bch.info/en/)
17+
- [Banano](https://banano.cc/)
18+
- [Cardano](https://cardano.org/)
19+
- [Dash](https://www.dash.org/)
1620
- [Dogecoin](https://dogecoin.com/)
1721
- [Epic Cash](https://linktr.ee/epiccash)
22+
- [MimbleWimbleCoin](https://mwc.mw)
1823
- [Ethereum](https://ethereum.org/en/)
24+
- [Ecash](https://e.cash/)
25+
- [Fact0rn](https://www.fact0rn.io/)
1926
- [Firo](https://firo.org/)
2027
- [Litecoin](https://litecoin.org/)
2128
- [Monero](https://www.getmonero.org/)
29+
- [Nano](https://nano.org/)
2230
- [Namecoin](https://www.namecoin.org/)
2331
- [Particl](https://particl.io/)
32+
- [Peercoin](https://www.peercoin.net/)
33+
- [Salvium](https://salvium.io/)
34+
- [Solana](https://solana.com/)
35+
- [Stellar](https://stellar.org/)
36+
- [Tezos](https://tezos.com/)
2437
- [Wownero](https://wownero.org/)
38+
- [Xelis](https://xelis.org/)
2539
- All private keys and seeds stay on device and are never shared.
2640
- Easy backup and restore feature to save all the information that's important to you.
2741
- Trading cryptocurrencies through our partners.
@@ -31,8 +45,6 @@ Highlights include:
3145
- Open source software.
3246
- No ads.
3347

34-
> You can find the roadmap [here](docs/roadmap.md).
35-
3648
## Building
3749

3850
You can look at the [build instructions](docs/building.md) for more details.

analysis_options.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ analyzer:
1818
- "crypto_plugins/**"
1919
- "bin/cache/**"
2020
- "lib/generated_plugin_registrant.dart"
21+
- "lib/wl_gen/generated/**"
22+
- '**/*.template.dart'
2123

2224
# For more information see:
2325
# https://dart.dev/guides/language/analysis-options#enabling-additional-type-checks
@@ -92,6 +94,7 @@ linter:
9294
constant_identifier_names: false
9395
prefer_final_locals: true
9496
prefer_final_in_for_each: true
97+
lines_longer_than_80_chars: true
9598
# require_trailing_commas: true // causes issues with dart 3.7
9699
# avoid_print: false # Uncomment to disable the `avoid_print` rule
97100
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule

android/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ gradle-wrapper.jar
77
/key.properties
88
app/upload-keystore-campfire.jks
99
app/upload-keystore-stackwallet.jks
10-
GeneratedPluginRegistrant.java
10+
GeneratedPluginRegistrant.java
11+
/.kotlin/

android/app/proguard-rules.pro

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,9 @@
3232
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken
3333

3434
# required for flutter file_picker
35-
-keep class androidx.lifecycle.DefaultLifecycleObserver
35+
-keep class androidx.lifecycle.DefaultLifecycleObserver
36+
37+
# required for flutter_secure_storage
38+
-dontwarn com.google.errorprone.annotations.**
39+
-dontwarn javax.annotation.Nullable
40+
-dontwarn javax.annotation.concurrent.GuardedBy
-6.37 KB
Binary file not shown.
-2.23 KB
Binary file not shown.
69 Bytes
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item>
4+
<bitmap android:gravity="fill" android:src="@drawable/background"/>
5+
</item>
6+
<item>
7+
<bitmap android:gravity="center" android:src="@drawable/splash"/>
8+
</item>
9+
</layer-list>

0 commit comments

Comments
 (0)