Skip to content

Commit

Permalink
feat: apply prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
whitneypurdum committed Jun 18, 2022
1 parent 0ed9855 commit abc5154
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/modules/claims/claims.service.ts
Expand Up @@ -1353,7 +1353,11 @@ export class ClaimsService {
this._didRegistry.registrySettings,
this._didRegistry.ipfsStore
);
const domainReader = new DomainReader({ensRegistryAddress: chainConfigs()[this._signerService.chainId].ensResolverV2Address, provider: this._signerService.provider})
const domainReader = new DomainReader({
ensRegistryAddress:
chainConfigs()[this._signerService.chainId].ensResolverV2Address,
provider: this._signerService.provider,
});
const issuerResolver = new EthersProviderIssuerResolver(domainReader);
this._vcIssuerVerifier = new VCIssuerVerification(
credentialResolver,
Expand Down
Expand Up @@ -583,7 +583,7 @@ export abstract class VerifiableCredentialsServiceBase {
: [],
id: params.id,
},
};
} as Credential<RoleCredentialSubject>;

if (params.expirationDate) {
credential.expirationDate = params.expirationDate.toISOString();
Expand Down

0 comments on commit abc5154

Please sign in to comment.