-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor/encryption key #469
base: develop
Are you sure you want to change the base?
Conversation
# Conflicts: # lib/common/kms/key_providers/bjj_provider.dart # lib/common/kms/key_providers/ed25519_provider.dart # lib/common/kms/key_providers/secp256k1_provider.dart # lib/iden3comm/authenticate.dart # lib/iden3comm/domain/use_cases/fetch_and_save_claims_use_case.dart # lib/iden3comm/domain/use_cases/fetch_onchain_claims_use_case.dart # lib/iden3comm/domain/use_cases/get_auth_inputs_use_case.dart # lib/identity/data/data_sources/smt_data_source.dart # lib/identity/data/data_sources/storage_smt_data_source.dart # lib/identity/data/repositories/identity_repository_impl.dart # lib/identity/data/repositories/smt_repository_impl.dart # lib/identity/domain/use_cases/identity/update_identity_use_case.dart # lib/identity/libs/bjj/bjj_wallet.dart # lib/identity/libs/bjj/eddsa_babyjub.dart # lib/sdk/di/injector.config.dart # lib/sdk/di/injector.dart # lib/sdk/polygon_id_sdk.dart # pubspec.yaml # test/common/kms.dart # test/identity/domain/use_cases/profile/add_profile_use_case_test.dart # test/identity/domain/use_cases/profile/remove_profile_use_case_test.dart
# Conflicts: # lib/sdk/di/injector.config.dart
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## develop #469 +/- ##
===========================================
- Coverage 21.96% 21.40% -0.56%
===========================================
Files 257 265 +8
Lines 8474 8605 +131
===========================================
- Hits 1861 1842 -19
- Misses 6613 6763 +150 ☔ View full report in Codecov by Sentry. |
@@ -45,7 +45,7 @@ class UpdateClaimUseCase extends FutureUseCase<UpdateClaimParam, ClaimEntity> { | |||
.getClaim( | |||
claimId: param.id, | |||
genesisDid: param.genesisDid, | |||
privateKey: param.privateKey) | |||
encryptionKey: param.encryptionKey) | |||
.then((claim) => ClaimEntity( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if possible can we remove the usage of multiple then
like you did in other places? IMHO it is easier to debug and read, but we can do it at a later stage.
# Conflicts: # lib/sdk/di/injector.config.dart
No description provided.