Skip to content

Commit

Permalink
feat(pex): created core PEX module
Browse files Browse the repository at this point in the history
Signed-off-by: Berend Sliedrecht <[email protected]>
  • Loading branch information
berendsliedrecht committed Dec 18, 2023
1 parent d956e05 commit 3268106
Show file tree
Hide file tree
Showing 11 changed files with 1,012 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
"@digitalcredentials/jsonld-signatures": "^9.3.1",
"@digitalcredentials/vc": "^1.1.2",
"@multiformats/base-x": "^4.0.1",
"@sphereon/pex": "^2.2.2",
"@sphereon/pex-models": "^2.1.2",
"@sphereon/ssi-types": "^0.17.5",
"@stablelib/ed25519": "^1.0.2",
"@stablelib/random": "^1.0.1",
"@stablelib/sha256": "^1.0.1",
Expand All @@ -38,6 +41,7 @@
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"did-resolver": "^4.1.0",
"jsonpath": "^1.1.1",
"lru_map": "^0.4.1",
"luxon": "^3.3.0",
"make-error": "^1.3.6",
Expand All @@ -52,6 +56,7 @@
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/jsonpath": "^0.2.4",
"@types/luxon": "^3.2.0",
"@types/object-inspect": "^1.8.0",
"@types/uuid": "^9.0.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { AriesFrameworkError } from '../../error'

export class PresentationExchangeError extends AriesFrameworkError {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { DependencyManager, Module } from '../../plugins'

import { PresentationExchangeService } from './PresentationExchangeService'

/**
* @public
*/
export class PresentationExchangeModule implements Module {
/**
* Registers the dependencies of the presentation-exchange module on the dependency manager.
*/
public register(dependencyManager: DependencyManager) {
// Services
dependencyManager.registerSingleton(PresentationExchangeService)
}
}
Loading

0 comments on commit 3268106

Please sign in to comment.