-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cat-voices): wallet link transaction (#976)
* refactor(cat-voices): migrate apple-mobile-web-app-capable to mobile-web-app-capable * chore: add missing catalyst compression config * chore: add word to dictionary * feat: add loader to submit transaction button * feat: add transaction config repository * feat: add registration transaction builder * feat: submit registration * feat: update cryptocurrency formatter * feat: handle submit tx error * feat: move to next step after submitting a registration * feat: improve error handling for submitting a transaction * chore: typo * chore: review feedback * feat: localized exception
- Loading branch information
Showing
30 changed files
with
737 additions
and
67 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -122,6 +122,7 @@ Jörmungandr | |
junitreport | ||
junitxml | ||
Keyhash | ||
keychains | ||
keyserver | ||
keyspace | ||
KUBECONFIG | ||
|
This file contains 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
16 changes: 16 additions & 0 deletions
16
catalyst_voices/lib/pages/registration/bloc_registration_builder.dart
This file contains 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,16 @@ | ||
import 'package:catalyst_voices_blocs/catalyst_voices_blocs.dart'; | ||
import 'package:flutter_bloc/flutter_bloc.dart'; | ||
|
||
class BlocRegistrationBuilder<T> | ||
extends BlocSelector<RegistrationCubit, RegistrationState, T> { | ||
BlocRegistrationBuilder({ | ||
super.key, | ||
required BlocWidgetSelector<RegistrationStateData, T> selector, | ||
required super.builder, | ||
super.bloc, | ||
}) : super( | ||
selector: (state) { | ||
return selector(state.registrationStateData); | ||
}, | ||
); | ||
} |
This file contains 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 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 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.