AnonCreds did:web method registry for Credo.
Based on current draft spec being written in this repo.
In order to plug-in this into an Credo Agent instance you must register DidWebAnonCredsRegistry
into the AnonCredsModule
configuration:
import { DidWebAnonCredsRegistry } from 'credo-ts-didweb-anoncreds'
const agent = new Agent({
config: {
/* agent config */
},
dependencies,
modules: {
/* ... */
anoncreds: new AnonCredsModule({ registries: [
/* ... */
new DidWebAnonCredsRegistry()
] }),
})