Skip to content
Snippets Groups Projects

feat: ocm did svdx generation for sender OP#250

Merged Alexey Lunin requested to merge feat/250-hin-ocm into main
All threads resolved!
Files
3
@@ -28,7 +28,7 @@ export class CatalogClient {
);
return response.data.did;
} catch (e) {
this.logger.debug("lookupEmail failed", e);
this.logger.debug("searchAccount failed", e);
if (e instanceof AxiosError && e.status === 404) {
return null;
@@ -42,7 +42,7 @@ export class CatalogClient {
this.logger.debug(`createAccount`, email);
try {
await axios.post(
`${this.catalogConfig.catalogUrl}//v1/accounts`,
`${this.catalogConfig.catalogUrl}/v1/accounts`,
{
email: email,
did: didSvdx,
Loading