Skip to content

Commit

Permalink
feat: add did
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Jun 8, 2023
1 parent 445e69d commit ef89fe6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .well-known/did.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"@context": [
"https://www.w3.org/ns/did/v1",
{
"Ed25519VerificationKey2018": "https://w3id.org/security#Ed25519VerificationKey2018",
"publicKeyJwk": {
"@id": "https://w3id.org/security#publicKeyJwk",
"@type": "@json"
}
}
],
"id": "did:web:broken-example.identinet.io",
"verificationMethod": [
{
"id": "did:web:broken-example.identinet.io#z6MkogF8SfmeAPX9yzruS7wTn2VZrDWA9QUEaUQwaE3MtRLa",
"type": "Ed25519VerificationKey2018",
"controller": "did:web:broken-example.identinet.io",
"publicKeyJwk": {
"kty": "OKP",
"crv": "Ed25519",
"x": "iQyyXcAyn0V6W0vJSEXlfh1eBJT0uDhdXwTVe1wkwgc"
}
}
],
"authentication": [
"did:web:broken-example.identinet.io#z6MkogF8SfmeAPX9yzruS7wTn2VZrDWA9QUEaUQwaE3MtRLa"
],
"assertionMethod": [
"did:web:broken-example.identinet.io#z6MkogF8SfmeAPX9yzruS7wTn2VZrDWA9QUEaUQwaE3MtRLa"
]
}
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include: [".well-known"]

0 comments on commit ef89fe6

Please sign in to comment.