Skip to content

Commit

Permalink
October (#3026)
Browse files Browse the repository at this point in the history
* refactor: Get rid of deprecated WillPopScope

* refactor: Remove syntax errors

* fix: Fixed mistake when updating wallet metadata for verifiers #2942

* feat: Remove polygon id from did menu #3001

* feat: Update wording #3002

* feat: Update authorization server url #3003

* feat: Title update for presentaiton flow #2013

* fix: Solve issuance issue #3003

* version update: 2.15.8+534

* feat: Use different auth for draft 13 and avbove with exception #3021

* feat: Make description optional

* refactor: Update wording #3025

* refactor: Show specific error

* fix: Fix bug for presentation format

* Default card image update

* fix: Format error issue fix #3024

* remove build runner files from gitignore

* feat: Show open id data exactly fetched #3005

* feat: Re-enable iss in the payload

* add g.dart files

* fix: Display image correctly for default vc #3004

* handle PopScope usecase for beacon screens (connection and payload signature)

---------

Co-authored-by: Bibash Shrestha <bibashshrestha@gmail.com>
  • Loading branch information
hawkbee1 and bibash28 authored Oct 30, 2024
1 parent 214c5b3 commit 75b9a39
Show file tree
Hide file tree
Showing 249 changed files with 8,716 additions and 332 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ app.*.map.json
!.idea/runConfigurations/

#build_runner
*.g.dart
*.freezed.dart
# *.g.dart
# *.freezed.dart

#private key related
*.env
Expand Down
Binary file modified assets/image/default_card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions lib/activity_log/log_class.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 28 additions & 20 deletions lib/app/shared/constants/constants_json.dart
Original file line number Diff line number Diff line change
Expand Up @@ -303,18 +303,21 @@ abstract class ConstantsJson {
};

static const walletMetadataForIssuers = <String, dynamic>{
'client_name': Parameters.walletName,
'authorization_endpoint': Parameters.authorizationEndPoint,
'response_types_supported': ['vp_token', 'id_token'],
'vp_formats_supported': {
'jwt_vc_json': {
'alg_values_supported': ['ES256', 'ES256K', 'EdDSA'],
'jwt_vp': {
'alg': ['ES256', 'ES256K', 'EdDSA'],
},
'jwt_vc': {
'alg': ['ES256', 'ES256K', 'EdDSA'],
},
'jwt_vp_json': {
'alg_values_supported': ['ES256', 'ES256K', 'EdDSA'],
'alg': ['ES256', 'ES256K', 'EdDSA'],
},
'jwt_vc_json': {
'alg': ['ES256', 'ES256K', 'EdDSA'],
},
'vc+sd-jwt': {
'alg_values_supported': ['ES256', 'ES256K', 'EdDSA'],
'alg': ['ES256', 'ES256K', 'EdDSA'],
},
'ldp_vp': {
'proof_type': [
Expand All @@ -333,23 +336,28 @@ abstract class ConstantsJson {
],
},
},
'client_id_schemes_supported': [
'did',
'redirect_uri',
'x509_san_dns',
'verifier_attestation'
'grant_types': ['authorization code', 'pre-authorized_code'],
'redirect_uris': [Parameters.authorizationEndPoint],
'subject_syntax_types_supported': ['did:key', 'did:jwk'],
'subject_syntax_types_discriminations': [
'did:key:jwk_jcs-pub',
'did:ebsi:v1',
],
'request_object_signing_alg_values_supported': ['ES256', 'ES256K', 'EdDSA'],
'presentation_definition_uri_supported': true,
'contacts': ['contact@talao.io']
'token_endpoint_auth_method_supported': [
'none',
'client_id',
'client_secret_post',
'client_secret_basic',
'client_secret_jwt',
],
'credential_offer_endpoint': ['openid-credential-offer://', 'haip://'],
'client_name': '${Parameters.appName} wallet',
'contacts': ['contact@talao.io'],
};

static const walletMetadataForVerifiers = <String, dynamic>{
'wallet_name': Parameters.walletName,
'key_type': 'software',
'user_authentication': 'system_biometry',
'client_name': Parameters.walletName,
'authorization_endpoint': Parameters.authorizationEndPoint,
'grant_types_supported': ['authorization_code', 'pre-authorized_code'],
'response_types_supported': ['vp_token', 'id_token'],
'vp_formats_supported': {
'jwt_vc_json': {
Expand Down Expand Up @@ -384,7 +392,7 @@ abstract class ConstantsJson {
'x509_san_dns',
'verifier_attestation',
],
'request_object_signing_alg_values_supported': ['ES256', 'ES256K'],
'request_object_signing_alg_values_supported': ['ES256', 'ES256K', 'EdDSA'],
'presentation_definition_uri_supported': true,
'contacts': ['contact@talao.io'],
};
Expand Down
Loading

0 comments on commit 75b9a39

Please sign in to comment.