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