We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need Verifiable Presentations to wrap our presentationSubmission. An example can be found here: https://identity.foundation/presentation-exchange/#presentation-submissions
Currently we have this (only presentationSubmission object, no VerifiablePresentation)
val presentationSubmission: PresentationSubmission = PresentationExchange.createPresentationFromCredentials(listOf(vcJwt2, vcJwt1), pd)
I suggest we change it to be like this:
val vp: VerifiablePresentation = PresentationExchange.createPresentationFromCredentials(listOf(vcJwt2, vcJwt1), pd) val vpJwt = vp.sign(issuerDid)
The change to our existing codebase will be to:
The text was updated successfully, but these errors were encountered:
This makes sense to me!
Sorry, something went wrong.
Just FYI, a related convo will happen in #176. Shouldn't be a blocker for this though.
#184
nitro-neal
No branches or pull requests
We need Verifiable Presentations to wrap our presentationSubmission. An example can be found here: https://identity.foundation/presentation-exchange/#presentation-submissions
Currently we have this (only presentationSubmission object, no VerifiablePresentation)
I suggest we change it to be like this:
The change to our existing codebase will be to:
The text was updated successfully, but these errors were encountered: