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 :
MyHoder, MyIssuer, and MyVerifier provide an overview of the process.
The Libs folder contains the detailed implementation of each actor.
The Utils folder includes miscellaneous functions.
Last updated