Directory Structure

Here's the directory structure for Tyepscript SDK tutorial.

├── src
│    ├── libs
│    │    ├── Holder.ts
│    │    ├── Issuer.ts
│    │    └── Verifier.ts
│    └── utils
│         ├── constants.ts
│         ├── dvrTable.ts
│         └── helper.ts
├── index.ts
├── MyHolder.ts
├── MyIssuer.ts
└── MyVerifier.ts

Components :

  1. MyHoder, MyIssuer, and MyVerifier provide an overview of the process.

  2. The Libs folder contains the detailed implementation of each actor.

  3. The Utils folder includes miscellaneous functions.

Last updated