Svelte CHAPI
Features:
- Simple listing of credentials
- Responds to GET and STORE requests
- [STORE] Verifies credentials with DIDKit and stores them.
- [GET] Issues VPs generated and signed using DIDKit
In short, you need to install the
wasm-unknown-unknown
Rust target and wasm-pack
, which can be done with the following command on the root of DIDKit
:make -C lib install-wasm-pack
Then, you have to build the WASM target of
DIDKit
:make -C lib ../target/test/wasm.stamp
If everything succeeds, you can proceed to the next step.
cd examples/svelte-chapi-wallet
yarn install
The run the app in development mode with:
yarn run dev
To create an optimized version of the app:
yarn run build
Last modified 1yr ago