0.5.0-alpha.59 • Published 1 year ago

@aries-framework/sd-jwt-vc v0.5.0-alpha.59

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Installation

Add the sd-jwt-vc module to your project.

yarn add @aries-framework/sd-jwt-vc

Quick start

After the installation you can follow the guide to setup your agent and add the following to your agent modules.

import { SdJwtVcModule } from '@aries-framework/sd-jwt-vc'

const agent = new Agent({
  config: {
    /* config */
  },
  dependencies: agentDependencies,
  modules: {
    sdJwtVc: new SdJwtVcModule(),
    /* other custom modules */
  },
})

await agent.initialize()