-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
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
Support DIDComm Messaging attachments #612
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I currently have a use case where A little more context about my use case. I am developing a set of DIDComm protocols that will use the IPLD DAG-JSON codec as a way to specify links to other content-addressable content. This content could be external to the DIDComm message, or can be an attachment in the message. I would like to be able to handle these attachments using Veramo, and also develop a new message handler that does the following:
Message handlers specific to these DIDComm protocols that use DAG-JSON can then use IPLD tooling internally to traverse the message and its links to attachments using the CAR. Here is an example of what a message using DAG-JSON and some attachments would look like: {
"id": "...",
"type": "...",
"body": {
"someLinkedContent": { "/": "<CID of offer>" },
},
"attachments": [
{
"data": {
"hash": "<multi hash of content>"
"json": {
... some attached JSON content
}
}
}
]
} |
TBD: needs more refinement
Extend the current DIDCommMessage and Message interfaces to support DIDCommV2 attachments as defined here: https://identity.foundation/didcomm-messaging/spec/#attachments
The text was updated successfully, but these errors were encountered: