did-method-key
Advanced tools
Comparing version
# did:key driver ChangeLog | ||
## 0.4.0 - 2020-01-29 | ||
### Changed | ||
- **BREAKING**: Now using `'https://www.w3.org/ns/did/v1'` as context. | ||
## 0.3.0 - 2020-01-08 | ||
@@ -4,0 +9,0 @@ |
@@ -57,3 +57,3 @@ /*! | ||
return { | ||
'@context': 'https://w3id.org/did/v1', | ||
'@context': 'https://www.w3.org/ns/did/v1', | ||
id: did, | ||
@@ -60,0 +60,0 @@ publicKey: [{ |
{ | ||
"name": "did-method-key", | ||
"version": "0.3.0", | ||
"version": "0.4.0", | ||
"description": "A did:key method driver for did-io and standalone use.", | ||
@@ -5,0 +5,0 @@ "homepage": "http://github.com/digitalbazaar/did-method-key", |
# did:key method driver _(did-method-key)_ | ||
[](https://npm.im/did-method-key) | ||
[](https://travis-ci.org/digitalbazaar/did-method-key) | ||
[](https://travis-ci.org/digitalbazaar/did-method-key-js) | ||
@@ -50,3 +50,3 @@ > A [DID](https://w3c-ccg.github.io/did-spec/) (Decentralized Identifier) method driver for the `did-io` library and for standalone use | ||
{ | ||
"@context": "https://w3id.org/did/v1", | ||
"@context": "https://www.w3.org/ns/did/v1", | ||
"id": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", | ||
@@ -53,0 +53,0 @@ "publicKey": [ |
@@ -20,3 +20,3 @@ /*! | ||
expect(didDoc.id).to.equal(did); | ||
expect(didDoc['@context']).to.equal('https://w3id.org/did/v1'); | ||
expect(didDoc['@context']).to.equal('https://www.w3.org/ns/did/v1'); | ||
expect(didDoc.authentication).to.eql([keyId]); | ||
@@ -23,0 +23,0 @@ expect(didDoc.assertionMethod).to.eql([keyId]); |
Sorry, the diff of this file is not supported yet
24265
1.02%