Skip to content

Commit

Permalink
Merge branch 'main' into TALAO
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkbee1 committed Oct 30, 2024
2 parents d40b803 + 5352e93 commit 8702cf7
Show file tree
Hide file tree
Showing 251 changed files with 8,740 additions and 358 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
13 changes: 0 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,19 +334,6 @@ $ flutter build appbundle --flavor "staging" --target "lib/main_staging.dart"
$ flutter build appbundle --flavor "production" --target "lib/main_production.dart"
```

### iOS .app for Simulator

```bash
# Development
$ flutter build ios --simulator --flavor "development" --target "lib/main_development.dart"

# Staging
$ flutter build ios --simulator --flavor "staging" --target "lib/main_staging.dart"

# Production
$ flutter build ios --simulator --flavor "production" --target "lib/main_production.dart"
```

### iOS .app for Devices

```bash
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 8702cf7

Please sign in to comment.