Update truvera-web-wallet-integration-guide.md#71
Open
Conversation
| |---|---| | ||
| | **Customer App** | Frontend that hosts the Truvera Wallet SDK and presents consent UI to the user | | ||
| | **Customer Backend** | Your server — calls the Truvera API, holds your API key, issues and verifies credentials | | ||
| | **Truvera Wallet SDK** | Client-side SDK that manages the user's DID, stores credentials, and builds presentations | |
Contributor
There was a problem hiding this comment.
do you think we should mention the EDV* here as a component? To clarify how user data is stored
| const { submit } = await wallet.createPresentation({ | ||
| proofRequest: proofRequestUrl, | ||
| credentials: [ | ||
| { id: credential.id, attributesToReveal: ['credentialSubject.fullName'] }, |
Contributor
There was a problem hiding this comment.
Can we use the default presentation here? Maybe this is not available yet, i will have a look at the code
| |---|---| | ||
| | **Key management** | Use passkey (`passkey: true`) as the default. Mnemonic and master key are for recovery or advanced cases only | | ||
| | **Mnemonic backup** | If using mnemonic, prompt the user to save it on first enrollment. Never store it server-side or in localStorage | | ||
| | **EDV auth key** | Issue per-user `edvAuthKey` values after authentication. Never share a single key across users | |
Contributor
There was a problem hiding this comment.
I'm not sure about this one. I think the EDV auth key is per organization instead of per user/wallet
Collaborator
Author
There was a problem hiding this comment.
You are right, I will change this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Web wallet integration guide explaining how to use the web wallet bundle for an implementation similar to what we showed in the demo.