Skip to content

Commit

Permalink
chore: fixes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Jun 13, 2024
1 parent 18d2830 commit 339dcfb
Show file tree
Hide file tree
Showing 6 changed files with 218 additions and 169 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"@sphereon/ssi-sdk-ext.key-manager": "0.20.0",
"@sphereon/ssi-sdk-ext.key-utils": "0.20.0",
"@sphereon/ssi-sdk-ext.kms-local": "0.20.0",
"@sphereon/ssi-sdk.sd-jwt": "0.24.1-next.113",
"@sphereon/ssi-sdk.contact-manager": "0.24.1-next.113",
"@sphereon/ssi-sdk.core": "0.24.1-next.113",
"@sphereon/ssi-sdk.data-store": "0.24.1-next.113",
Expand Down
2 changes: 1 addition & 1 deletion src/agent/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const agentPlugins: Array<IAgentPlugin> = [
}),
new DIDManager({
store: new DIDStore(dbConnection),
defaultProvider: `${DID_PREFIX}:${SupportedDidMethodEnum.DID_OYD}`,
defaultProvider: `${DID_PREFIX}:${SupportedDidMethodEnum.DID_JWK}`,
providers: didProviders,
}),
new DIDResolverPlugin({
Expand Down
2 changes: 1 addition & 1 deletion src/machines/onboardingMachine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const onboardingPinCodeVerifyGuard = (ctx: OnboardingMachineContext, event: Next

const createOnboardingMachine = (opts?: CreateOnboardingMachineOpts) => {
const credentialData = {
didMethod: opts?.credentialData?.didMethod ?? SupportedDidMethodEnum.DID_OYD,
didMethod: opts?.credentialData?.didMethod ?? SupportedDidMethodEnum.DID_JWK,
didOptions: opts?.credentialData?.didOptions ?? {/*codecName: 'EBSI',*/ type: 'Secp256r1'}, // todo: We need a preference/options provider supporting ecosystems
proofFormat: opts?.credentialData?.proofFormat ?? 'jwt',
credential:
Expand Down
1 change: 1 addition & 0 deletions src/navigation/machines/oid4vciStateNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
CorrelationIdentifierType,
CredentialRole,
IBasicCredentialLocaleBranding,
IdentityOrigin,
NonPersistedParty,
Party,
PartyOrigin,
Expand Down
2 changes: 1 addition & 1 deletion src/store/actions/contact.actions.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {CorrelationIdentifierType, Party, CredentialRole, Identity, PartyTypeType, PartyOrigin} from '@sphereon/ssi-sdk.data-store';
import {CorrelationIdentifierType, Party, CredentialRole, Identity, PartyTypeType, PartyOrigin, IdentityOrigin} from '@sphereon/ssi-sdk.data-store';
import {Action} from 'redux';
import {ThunkAction, ThunkDispatch} from 'redux-thunk';
import {v4 as uuidv4} from 'uuid';
Expand Down
Loading

0 comments on commit 339dcfb

Please sign in to comment.