Skip to content

Commit

Permalink
feat: Made did ebsiv3 default
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 13, 2023
1 parent 69b9c85 commit 029fb26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dashboard/profile/cubit/profile_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class ProfileCubit extends Cubit<ProfileState> {

final didKeyType =
(await secureStorageProvider.get(SecureStorageKeys.didKeyType)) ??
DidKeyType.p256.toString();
DidKeyType.ebsiv3.toString();

final tezosNetworkJson = await secureStorageProvider
.get(SecureStorageKeys.blockchainNetworkKey);
Expand Down
2 changes: 1 addition & 1 deletion lib/dashboard/profile/models/profile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ProfileModel extends Equatable {
userConsentForVerifierAccess: true,
userPINCodeForAuthentication: true,
tezosNetwork: TezosNetwork.mainNet(),
didKeyType: DidKeyType.p256.toString(),
didKeyType: DidKeyType.ebsiv3.toString(),
isSecurityLow: true,
isDeveloperMode: false,
userPinDigitsLength: 6,
Expand Down

0 comments on commit 029fb26

Please sign in to comment.