Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ ___

▸ **serviceEndpointsToCredentials**(`tokens`): `VerifiableCredential`<`RoleCredentialSubject`\>[]

Finds verifiable credentials among service ednpoints
Finds verifiable credentials among service endpoints

#### Parameters

Expand Down
2 changes: 1 addition & 1 deletion docs/status-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ This is in line with the `id` property guidance for [StatusList2021Credential](h

Due to `NamespaceStatusLists` and `CredentialWithStatus` being separate aggregate roots, the design allows for a created entry which is not associated with a credential (due to a failure).
This is a possible drawback.
However the rationale for this is that if the association of a credential to an entry is located within the `NamespaceStatusLists` , then is is not possible to efficiently search for a credential based on credential `id`.
However the rationale for this is that if the association of a credential to an entry is located within the `NamespaceStatusLists` , then it is not possible to efficiently search for a credential based on credential `id`.
In other words, if needing to search across all of the `NamespaceStatusLists` for a credential based on its `id`, then one would need to lock updates across all namespaces to be sure that a data wasn't inserted during the search.
(All namespaces must be locked because, based on the `id` alone, the credential could be in any namespace).

Expand Down
2 changes: 1 addition & 1 deletion e2e/app.e2e.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { config } from 'dotenv';
// although it is called in app.module, it is added here to be able to override DID_REGISTRY_ADDRESS. When config() is called next time it will not change variables alredy presented in env
// although it is called in app.module, it is added here to be able to override DID_REGISTRY_ADDRESS. When config() is called next time it will not change variables already presented in env
config();
import { Test } from '@nestjs/testing';
import { INestApplication } from '@nestjs/common';
Expand Down
2 changes: 1 addition & 1 deletion src/modules/claim/resolvers/credential.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class RoleCredentialResolver implements CredentialResolver {
}

/**
* Finds verifiable credentials among service ednpoints
* Finds verifiable credentials among service endpoints
*
* @param tokens resolved service endpoints of DID document services
* @returns verifiable credentials
Expand Down