forked from w3c-ccg/did-method-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
489 lines (444 loc) · 11.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<!DOCTYPE html>
<html>
<head>
<title>DID Method Registry</title>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'/>
<!--
=== NOTA BENE ===
For the three scripts below, if your spec resides on dev.w3 you can check them
out in the same tree and use relative links so that they'll work offline,
-->
<script src='https://www.w3.org/Tools/respec/respec-w3c-common' class='remove'></script>
<script type="text/javascript" class="remove">
var respecConfig = {
// specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
specStatus: "CG-DRAFT",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "did-method-registry",
// subtitle
subtitle: "A registry for Decentralized Identifier Methods",
// if you wish the publication date to be other than today, set this
// publishDate: "2009-08-06",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
// previousPublishDate: "1977-03-15",
// previousMaturity: "WD",
// extend the bibliography entries
//localBiblio: ccg.localBiblio,
github: "https://github.com/w3c-ccg/did-method-registry/",
includePermalinks: false,
// if there a publicly available Editor's Draft, this is the link
edDraftURI: "https://w3c-ccg.github.io/did-method-registry/",
// if this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2009-08-05",
// editors, add as many as you like
// only "name" is required
editors: [
{ name: "Manu Sporny", url: "http://manu.sporny.org/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/" },
{ name: "Drummond Reed", url: "https://www.linkedin.com/in/drummondreed/",
company: "Evernym", companyURL: "https://evernym.com/"}
],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
// only "name" is required. Same format as editors.
authors: [
{ name: "Credentials Community Group", url: "https://w3c-ccg.github.io/",
company: "W3C", companyURL: "https://www.w3.org/" }
],
// name of the WG
wg: "Credentials Community Group",
// URI of the public WG page
wgURI: "https://www.w3.org/community/credentials/",
// name (with the @w3c.org) of the public mailing to which comments are due
wgPublicList: "public-credentials",
// URI of the patent status for this WG, for Rec-track documents
// !!!! IMPORTANT !!!!
// This is important for Rec-track documents, do not copy a patent URI from a random
// document unless you know what you're doing. If in doubt ask your friendly neighbourhood
// Team Contact.
wgPatentURI: "https://www.w3.org/community/about/agreements/cla/",
maxTocLevel: 4,
inlineCSS: true
};
</script>
</head>
<body>
<section id='abstract'>
<p>
This document serves as an informative registry for all known Decentralized
Identifier Methods and their associated specifications.
</p>
</section>
<section id='sotd'>
<p>
Comments regarding this document are welcome. Please file issues
directly on <a href="https://github.com/w3c-ccg/did-spec/issues/">GitHub</a>,
or send them to
<a href="mailto:[email protected]">[email protected]</a>
(<a href="mailto:[email protected]?subject=subscribe">subscribe</a>,
<a href="https://lists.w3.org/Archives/Public/public-credentials/">archives</a>).
</p>
<p>
Portions of the work on this specification have been funded by the
United States Department of Homeland Security's Science and Technology
Directorate under contracts HSHQDC-16-R00012-H-SB2016-1-002 and
HSHQDC-17-C-00019. The content of this specification does not necessarily
reflect the position or the policy of the U.S. Government and no official
endorsement should be inferred.
</p>
<p>
Work on this specification has also been supported by the Rebooting the
Web of Trust community facilitated by Christopher Allen, Shannon Appelcline,
Kiara Robles, Brian Weller, Betty Dhamers, Kaliya Young, Manu Sporny,
Drummond Reed, and Joe Andrieu.
</p>
</section>
<section>
<h1>Introduction</h1>
<p>
This document contains a list of all known Decentralized Identifier Methods
and their associated specifications.
</p>
</section>
<section>
<h1>The Registration Process</h1>
<p>
Software implementers may find that the existing Decentralized
Identifier Methods listed in this repository are not suitable for their
use case and may need to add a new method to this registry.
Adding a Decentralized Identifier Method to this list is designed to be a
lightweight, community-driven process. In order to add a new method to this
registry, an implementer MUST:
</p>
<ol>
<li>
Implement at least an experimental version of the new DID Method.
</li>
<li>Create a specification describing the new DID Method that is publicly
available and intended to be conformant with the DID specification at
<a href="https://w3c-ccg.github.io/did-spec/">https://w3c-ccg.github.io/did-spec/</a>.</li>
<li>
Request that the specification be added to this registry by submitting a
Github Pull Request that adds the new method to the list of existing
methods, with URL.
</li>
</ol>
<p>
Specifications that do not meet these criteria will not be accepted. Old listings which fall out of conformance may be removed.
</p>
<p>
Implementers that would like help or guidance during this process are urged
to join the <a href="https://github.com/w3c-ccg/w3c-ccg.github.io/blob/master/joining.md">W3C Credentials Community Group</a>
and request assistance via the
<a href="https://lists.w3.org/Archives/Public/public-credentials/">mailing list</a>.
</p>
</section>
<section>
<h1>The Registry</h1>
<p>
This table summarizes the DID method specifications currently in development.
The links will be updated as subsequent Implementer’s Drafts are produced.
</p>
<table class="simple">
<thead>
<tr>
<th>Method Name</th>
<th>Status</th>
<th>DLT or Network</th>
<th>Authors</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>
did:btcr:
</td>
<td>
PROVISIONAL
</td>
<td>
Bitcoin
</td>
<td>
Christopher Allen, Ryan Grant, Kim Hamilton Duffy
</td>
<td>
<a href="https://w3c-ccg.github.io/didm-btcr">BTCR DID Method</a>
</td>
</tr>
<tr>
<td>
did:stack:
</td>
<td>
PROVISIONAL
</td>
<td>
Bitcoin
</td>
<td>
Jude Nelson
</td>
<td>
<a href="https://github.com/blockstack/blockstack-core/blob/master/docs/blockstack-did-spec.md">Blockstack DID Method</a>
</td>
</tr>
<tr>
<td>
did:cnsnt:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Consent
</td>
<td>
</td>
</tr>
<tr>
<td>
did:erc725:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Markus Sabadello, Fabian Vogelsteller, Peter Kolarov
</td>
<td>
<a href="https://github.com/WebOfTrustInfo/rebooting-the-web-of-trust-spring2018/blob/master/topics-and-advance-readings/DID-Method-erc725.md">erc725 DID Method</a>
</td>
</tr>
<tr>
<td>
did:example:
</td>
<td>
PROVISIONAL
</td>
<td>
DID Specification
</td>
<td>
W3C Credentials Community Group
</td>
<td>
<a href="https://w3c-ccg.github.io/did-spec/">DID Specification</a>
</td>
</tr>
<tr>
<td>
did:ipid:
</td>
<td>
PROVISIONAL
</td>
<td>
IPFS
</td>
<td>
Jonathan Holt
</td>
<td>
</td>
</tr>
<tr>
<td>
did:life:
</td>
<td>
PROVISIONAL
</td>
<td>
RChain
</td>
<td>
lifeID Foundation
</td>
<td>
<a href="https://lifeid.github.io/did-method-spec/">lifeID DID Method</a>
</td>
</tr>
<tr>
<td>
did:sov:
</td>
<td>
PROVISIONAL
</td>
<td>
Sovrin
</td>
<td>
Mike Lodder
</td>
<td>
<a href="https://sovrin-foundation.github.io/sovrin/spec/did-method-spec-template.html">Sovrin DID Method</a>
</td>
</tr>
<tr>
<td>
did:uport:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
uPort
</td>
<td>
</td>
</tr>
<tr>
<td>
did:v1:
</td>
<td>
PROVISIONAL
</td>
<td>
Veres One
</td>
<td>
Digital Bazaar
</td>
<td>
<a href="https://w3c-ccg.github.io/didm-veres-one/">Veres One DID Method</a>
</td>
</tr>
<tr>
<td>
did:dom:
</td>
<td>
PROVISIONAL
</td>
<td>
Ethereum
</td>
<td>
Dominode
</td>
<td>
</td>
</tr>
<tr>
<td>
did:ont:
</td>
<td>
PROVISIONAL
</td>
<td>
Ontology
</td>
<td>
Ontology Foundation
</td>
<td>
<a href="https://github.com/ontio/ontology-DID/blob/master/docs/en/DID-ONT-method.md">Ontology DID Method</a>
</td>
</tr>
<tr>
<td>
did:vvo:
</td>
<td>
PROVISIONAL
</td>
<td>
Vivvo
</td>
<td>
Vivvo Application Studios
</td>
<td>
<a href="https://vivvo.github.io/vivvo-did-scheme/spec/did-method-spec-template.html">Vivvo DID Method</a>
</td>
</tr>
<tr>
<td>
did:icon:
</td>
<td>
PROVISIONAL
</td>
<td>
ICON
</td>
<td>
ICON Foundation
</td>
<td>
<a href="https://github.com/icon-project/icon-DID/blob/master/docs/ICON-DID-method.md">ICON DID Method</a>
</td>
</tr>
<tr>
<td>
did:iwt:
</td>
<td>
PROVISIONAL
</td>
<td>
InfoWallet
</td>
<td>
Raonsecure
</td>
<td>
<a href="https://github.com/infowallet/did_method/blob/master/did_method.md">InfoWallet DID Method</a>
</td>
</tr>
<tr>
<td>
did:ockam:
</td>
<td>
PROVISIONAL
</td>
<td>
Ockam
</td>
<td>
Ockam
</td>
<td>
<a href="https://github.com/ockam-network/did-method-spec/blob/master/README.md">Ockam DID Method</a>
</td>
</tr>
<tr>
<td>
did:ala:
</td>
<td>
PROVISIONAL
</td>
<td>
Alastria
</td>
<td>
Alastria National Blockchain Ecosystem
</td>
<td>
<a href="https://github.com/alastria/alastria-identity/wiki/Alastria-DID-Method-Specification-(Quorum-version)">Alastria DID Method</a>
</td>
</tr>
</tbody>
</table>
</section>
</section>
</body>
</html>