Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzleutgeb authored Oct 14, 2024
2 parents d602efc + ee61c53 commit 843accb
Show file tree
Hide file tree
Showing 13 changed files with 3,711 additions and 2,904 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint-did-method-registry.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Lint DID Method Registry
name: Lint DID Methods
on:
pull_request: {}

jobs:
lint-did-spec-registries:
lint-did-extensions:
runs-on: ubuntu-latest
steps:
- name: Checkout source code...
Expand All @@ -12,12 +12,12 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install did-spec-registries tooling...
- name: Install did-extensions tooling...
working-directory: tooling
run: npm i
- name: Validate did-spec-registries DID method entries
- name: Validate did-extensions DID method entries
working-directory: tooling
run: npm run registry:validate
- name: Generate did-spec-registries registry index
- name: Generate did-extensions registry index
working-directory: tooling
run: npm run registry:generate:index
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main

jobs:
publish-did-spec-registries:
publish-did-extensions:
runs-on: ubuntu-latest
steps:
- name: Checkout source code...
Expand All @@ -14,13 +14,13 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install did-spec-registries tooling...
- name: Install did-extensions tooling...
working-directory: tooling
run: npm i
- name: Validate did-spec-registries DID method entries
- name: Validate did-extensions DID method entries
working-directory: tooling
run: npm run registry:validate
- name: Generate did-spec-registries registry index
- name: Generate did-extensions registry index
working-directory: tooling
run: npm run registry:generate:index
- name: Deploy to Github Pages
Expand Down
47 changes: 25 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
![W3C Logo](https://www.w3.org/Icons/w3c_home)

[![Echidna Auto-publish](https://github.com/w3c/did-spec-registries/actions/workflows/auto-publish.yml/badge.svg)](https://github.com/w3c/did-spec-registries/actions/workflows/auto-publish.yml)
[![Echidna Auto-publish](https://github.com/w3c/did-extensions/actions/workflows/auto-publish.yml/badge.svg)](https://github.com/w3c/did-extensions/actions/workflows/auto-publish.yml)

# Decentralized Identifier Core Registries v1.0
# Decentralized Identifier Extensions

This repository contains a registry created by the
This repository contains a list of known DID Extensions that are tracked
by the
[W3C Decentralized Identifier Working Group](https://www.w3.org/2019/did-wg/)
(DID WG) for the purpose of enhancing DID ecosystem interoperability.
(DID WG) for the purpose of enhancing DID ecosystem interoperability. There
might be extensions to DIDs other than the ones listed here; this is not
meant to be an exhaustive or centralized list of extensions.

An Editor's Draft of this repository is available at
https://w3c.github.io/did-spec-registries/.
https://w3c.github.io/did-extensions/.

## Adding a DID Method to this Registry
## Adding a DID Method

In order to register a new DID method, you must add a JSON file
to the [./methods](./methods) directory and
[open a pull request](https://github.com/w3c/did-spec-registries/pulls)
In order to register a new DID method, you must add a JSON file
to the [./methods](./methods) directory and
[open a pull request](https://github.com/w3c/did-extensions/pulls)
to add the file to this repository.

Here is an [example registration entry](https://w3c.github.io/did-spec-registries/methods/example.json):
Here is an [example registration entry](https://w3c.github.io/did-extensions/methods/example.json):

```jsonc
{
Expand All @@ -34,19 +37,19 @@ Here is an [example registration entry](https://w3c.github.io/did-spec-registrie
}
```

Your Pull Request will be automatically validated, please ensure
that all of the automated tests pass (no errors reported) or
your submission will not be reviewed. Common reasons for failed
validation includes invalidly formatted JSON files and missing
mandatory fields. There will be a checklist that you are expected
to complete and attest to its accuracy. Once you submit your request,
your pull request will be reviewed by the registry editors. Changes
regarding the required criteria may be requested. If there are at
least two reviews by registry maintainers listed in the CODEOWNERS file, and no objections or
changes requested, your DID method will be registered after a
Your Pull Request will be automatically validated, please ensure
that all of the automated tests pass (no errors reported) or
your submission will not be reviewed. Common reasons for failed
validation includes invalidly formatted JSON files and missing
mandatory fields. There will be a checklist that you are expected
to complete and attest to its accuracy. Once you submit your request,
your pull request will be reviewed by the registry editors. Changes
regarding the required criteria may be requested. If there are at
least two reviews by registry maintainers listed in the CODEOWNERS file, and no objections or
changes requested, your DID method will be registered after a
minimum of 7 days and a maximum of 30 days.

## Adding Anything Else to this Registry
## Adding Anything Else

Use the standard fork, branch, and pull request workflow to propose changes to
the registry. Please make branch names informative—by including the issue or
Expand All @@ -56,7 +59,7 @@ Editorial changes that improve the readability of the registry or correct
spelling or grammatical mistakes are welcome.

Non-editorial changes MUST go through a review and approval process that is
[detailed in the registry](https://w3c.github.io/did-spec-registries/#the-registration-process).
[detailed in the registry](https://w3c.github.io/did-extensions/#the-registration-process).

Please read [CONTRIBUTING.md](CONTRIBUTING.md), about licensing contributions.

Expand Down
40 changes: 0 additions & 40 deletions common.js

This file was deleted.

Loading

0 comments on commit 843accb

Please sign in to comment.