├── .com.greenworldsoft.syncfolderspro ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── io │ │ │ │ └── bdk │ │ │ │ └── f │ │ │ │ └── app │ │ │ │ └── bdk_wallet │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── flutter.png ├── logo.png └── logo2.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── application │ ├── blockchain │ │ ├── blockchain_bloc.dart │ │ ├── blockchain_bloc.freezed.dart │ │ ├── blockchain_event.dart │ │ └── blockchain_state.dart │ ├── connectivity │ │ ├── connectivity_cubit.dart │ │ └── connectivity_state.dart │ └── wallet │ │ ├── wallet_bloc.dart │ │ ├── wallet_bloc.freezed.dart │ │ ├── wallet_event.dart │ │ └── wallet_state.dart ├── core │ ├── constants │ │ ├── enums.dart │ │ └── value_object.dart │ ├── dependencey_injection │ │ ├── injection.config.dart │ │ ├── injection.dart │ │ └── register_injectable_module.dart │ ├── errors │ │ └── errors.dart │ └── failures │ │ ├── bdk_failures.dart │ │ └── bdk_failures.freezed.dart ├── domain │ ├── blockchain │ │ ├── entity │ │ │ ├── blockchain.dart │ │ │ └── blockchain.freezed.dart │ │ ├── failure │ │ │ ├── blockchain_failure.dart │ │ │ └── blockchain_failure.freezed.dart │ │ └── interface │ │ │ └── i_blockchain_serivice.dart │ ├── connectivity │ │ └── i_connectivity_service.dart │ ├── core │ │ ├── validators │ │ │ └── validators.dart │ │ └── value_objects │ │ │ └── value_objects.dart │ └── wallet │ │ ├── entity │ │ ├── wallet.dart │ │ └── wallet.freezed.dart │ │ ├── failure │ │ ├── wallet_failure.dart │ │ └── wallet_failure.freezed.dart │ │ └── interface │ │ └── i_wallet_Service.dart ├── infrastructure │ ├── blockchain │ │ ├── blockchain_service.dart │ │ └── dto │ │ │ ├── blockchain_dto.dart │ │ │ └── blockchain_dto.freezed.dart │ ├── connectivity │ │ └── connectivity_service.dart │ ├── core │ │ └── source │ │ │ └── local.dart │ └── wallet │ │ ├── DTO │ │ ├── transaction_dto.dart │ │ ├── transaction_dto.freezed.dart │ │ ├── transaction_dto.g.dart │ │ └── wallet_dto.dart │ │ └── wallet_service.dart ├── main.dart └── presentaition │ ├── core │ ├── animations │ │ └── transitions │ │ │ └── route_transition.dart │ ├── app_widget.dart │ ├── page_wrapper.dart │ ├── routes │ │ └── routes.dart │ ├── theme.dart │ └── widgets │ │ └── app_widgets.dart │ ├── dashboard │ ├── home.dart │ └── widgets │ │ ├── transaction_list.dart │ │ └── transaction_widget.dart │ ├── receive │ └── receive.dart │ ├── send │ └── send.dart │ ├── settings │ └── settings.dart │ ├── splash │ ├── not_connected.dart │ └── splash.dart │ └── wallet │ ├── create_wallet.dart │ ├── init_wallet.dart │ ├── load_wallet.dart │ └── widgets │ └── cached_wallet_list.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots └── screenshot.png └── test └── widget_test.dart /.com.greenworldsoft.syncfolderspro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/io/bdk/f/app/bdk_wallet/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/kotlin/io/bdk/f/app/bdk_wallet/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/assets/flutter.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/assets/logo2.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/application/blockchain/blockchain_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/blockchain/blockchain_bloc.dart -------------------------------------------------------------------------------- /lib/application/blockchain/blockchain_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/blockchain/blockchain_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/application/blockchain/blockchain_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/blockchain/blockchain_event.dart -------------------------------------------------------------------------------- /lib/application/blockchain/blockchain_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/blockchain/blockchain_state.dart -------------------------------------------------------------------------------- /lib/application/connectivity/connectivity_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/connectivity/connectivity_cubit.dart -------------------------------------------------------------------------------- /lib/application/connectivity/connectivity_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/connectivity/connectivity_state.dart -------------------------------------------------------------------------------- /lib/application/wallet/wallet_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/wallet/wallet_bloc.dart -------------------------------------------------------------------------------- /lib/application/wallet/wallet_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/wallet/wallet_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/application/wallet/wallet_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/wallet/wallet_event.dart -------------------------------------------------------------------------------- /lib/application/wallet/wallet_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/application/wallet/wallet_state.dart -------------------------------------------------------------------------------- /lib/core/constants/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/constants/enums.dart -------------------------------------------------------------------------------- /lib/core/constants/value_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/constants/value_object.dart -------------------------------------------------------------------------------- /lib/core/dependencey_injection/injection.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/dependencey_injection/injection.config.dart -------------------------------------------------------------------------------- /lib/core/dependencey_injection/injection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/dependencey_injection/injection.dart -------------------------------------------------------------------------------- /lib/core/dependencey_injection/register_injectable_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/dependencey_injection/register_injectable_module.dart -------------------------------------------------------------------------------- /lib/core/errors/errors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/errors/errors.dart -------------------------------------------------------------------------------- /lib/core/failures/bdk_failures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/failures/bdk_failures.dart -------------------------------------------------------------------------------- /lib/core/failures/bdk_failures.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/core/failures/bdk_failures.freezed.dart -------------------------------------------------------------------------------- /lib/domain/blockchain/entity/blockchain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/blockchain/entity/blockchain.dart -------------------------------------------------------------------------------- /lib/domain/blockchain/entity/blockchain.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/blockchain/entity/blockchain.freezed.dart -------------------------------------------------------------------------------- /lib/domain/blockchain/failure/blockchain_failure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/blockchain/failure/blockchain_failure.dart -------------------------------------------------------------------------------- /lib/domain/blockchain/failure/blockchain_failure.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/blockchain/failure/blockchain_failure.freezed.dart -------------------------------------------------------------------------------- /lib/domain/blockchain/interface/i_blockchain_serivice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/blockchain/interface/i_blockchain_serivice.dart -------------------------------------------------------------------------------- /lib/domain/connectivity/i_connectivity_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/connectivity/i_connectivity_service.dart -------------------------------------------------------------------------------- /lib/domain/core/validators/validators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/core/validators/validators.dart -------------------------------------------------------------------------------- /lib/domain/core/value_objects/value_objects.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/core/value_objects/value_objects.dart -------------------------------------------------------------------------------- /lib/domain/wallet/entity/wallet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/wallet/entity/wallet.dart -------------------------------------------------------------------------------- /lib/domain/wallet/entity/wallet.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/wallet/entity/wallet.freezed.dart -------------------------------------------------------------------------------- /lib/domain/wallet/failure/wallet_failure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/wallet/failure/wallet_failure.dart -------------------------------------------------------------------------------- /lib/domain/wallet/failure/wallet_failure.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/wallet/failure/wallet_failure.freezed.dart -------------------------------------------------------------------------------- /lib/domain/wallet/interface/i_wallet_Service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/domain/wallet/interface/i_wallet_Service.dart -------------------------------------------------------------------------------- /lib/infrastructure/blockchain/blockchain_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/blockchain/blockchain_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/blockchain/dto/blockchain_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/blockchain/dto/blockchain_dto.dart -------------------------------------------------------------------------------- /lib/infrastructure/blockchain/dto/blockchain_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/blockchain/dto/blockchain_dto.freezed.dart -------------------------------------------------------------------------------- /lib/infrastructure/connectivity/connectivity_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/connectivity/connectivity_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/core/source/local.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/core/source/local.dart -------------------------------------------------------------------------------- /lib/infrastructure/wallet/DTO/transaction_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/wallet/DTO/transaction_dto.dart -------------------------------------------------------------------------------- /lib/infrastructure/wallet/DTO/transaction_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/wallet/DTO/transaction_dto.freezed.dart -------------------------------------------------------------------------------- /lib/infrastructure/wallet/DTO/transaction_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/wallet/DTO/transaction_dto.g.dart -------------------------------------------------------------------------------- /lib/infrastructure/wallet/DTO/wallet_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/wallet/DTO/wallet_dto.dart -------------------------------------------------------------------------------- /lib/infrastructure/wallet/wallet_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/infrastructure/wallet/wallet_service.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/presentaition/core/animations/transitions/route_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/core/animations/transitions/route_transition.dart -------------------------------------------------------------------------------- /lib/presentaition/core/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/core/app_widget.dart -------------------------------------------------------------------------------- /lib/presentaition/core/page_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/core/page_wrapper.dart -------------------------------------------------------------------------------- /lib/presentaition/core/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/core/routes/routes.dart -------------------------------------------------------------------------------- /lib/presentaition/core/theme.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/presentaition/core/widgets/app_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/core/widgets/app_widgets.dart -------------------------------------------------------------------------------- /lib/presentaition/dashboard/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/dashboard/home.dart -------------------------------------------------------------------------------- /lib/presentaition/dashboard/widgets/transaction_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/dashboard/widgets/transaction_list.dart -------------------------------------------------------------------------------- /lib/presentaition/dashboard/widgets/transaction_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/dashboard/widgets/transaction_widget.dart -------------------------------------------------------------------------------- /lib/presentaition/receive/receive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/receive/receive.dart -------------------------------------------------------------------------------- /lib/presentaition/send/send.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/send/send.dart -------------------------------------------------------------------------------- /lib/presentaition/settings/settings.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/presentaition/splash/not_connected.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/splash/not_connected.dart -------------------------------------------------------------------------------- /lib/presentaition/splash/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/splash/splash.dart -------------------------------------------------------------------------------- /lib/presentaition/wallet/create_wallet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/wallet/create_wallet.dart -------------------------------------------------------------------------------- /lib/presentaition/wallet/init_wallet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/wallet/init_wallet.dart -------------------------------------------------------------------------------- /lib/presentaition/wallet/load_wallet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/wallet/load_wallet.dart -------------------------------------------------------------------------------- /lib/presentaition/wallet/widgets/cached_wallet_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/lib/presentaition/wallet/widgets/cached_wallet_list.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LtbLightning/bdk-flutter-app/HEAD/test/widget_test.dart --------------------------------------------------------------------------------