Use Case for Veramo #670
-
Hello, In the documentation, detailed explanation of the user-agent is provided. Is there any documentation available which shows how the user agent can be integrated with issuers and verifiers for some use case ? I am looking for end to end analysis of particular use case and what role veramo plays with other entities. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Veramo can be used to build agents for both issuers, holders and verifiers. Example credential flow:
Note: The verification API is undergoing some changes see #375 so it will likely be a lot more flexible and decoupled from the message handling logic. I hope this helps. |
Beta Was this translation helpful? Give feedback.
Veramo can be used to build agents for both issuers, holders and verifiers.
Example credential flow:
agent.createVerifiableCredential()
to issue a credential.agent.packDIDCommMessage()
andagent.sendDIDCommMessage()
to send the credential to the holder, if they can establish a DIDComm channel.@veramo/selective-diclosure
, or maybe also DIDComm, but many other protocols can also be implemented and used with Veramo.agent.createVerifiablePresentation()
, oragent.
to package the credential.agent.han…