-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/mwherman2000/did-extensions
- Loading branch information
Showing
22 changed files
with
243 additions
and
639 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# .github/workflows/pr-push.yml | ||
name: Echidna Auto-publish did-extensions-methods | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ["methods/**"] | ||
jobs: | ||
main: | ||
name: Echidna Auto-publish WD | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: methods/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_METHODS }} | ||
W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02 | ||
W3C_BUILD_OVERRIDE: | | ||
shortName: did-extensions-methods | ||
specStatus: NOTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# .github/workflows/pr-push.yml | ||
name: Echidna Auto-publish did-extensions-properties | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ["properties/**"] | ||
jobs: | ||
main: | ||
name: Echidna Auto-publish WD | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: properties/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_PROPERTIES }} | ||
W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02 | ||
W3C_BUILD_OVERRIDE: | | ||
shortName: did-extensions-properties | ||
specStatus: NOTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# .github/workflows/pr-push.yml | ||
name: Echidna Auto-publish did-extensions-resolution | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ["resolutions/**"] | ||
jobs: | ||
main: | ||
name: Echidna Auto-publish WD | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: resolutions/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_RESOLUTION }} | ||
W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02 | ||
W3C_BUILD_OVERRIDE: | | ||
shortName: did-extensions-resolution | ||
specStatus: NOTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
# .github/workflows/pr-push.yml | ||
name: Echidna Auto-publish | ||
name: Echidna Auto-publish did-extensions | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
main: | ||
name: Build, Validate and Deploy | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Begin spec-prod... | ||
uses: actions/checkout@v2 | ||
- name: Setup Node 16... | ||
uses: actions/setup-node@v1 | ||
uses: actions/checkout@v4 | ||
- name: Setup Node 22... | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16.x | ||
- name: Install did-spec-registries tooling... | ||
node-version: 22.x | ||
- 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 | ||
run: npm run validate | ||
- name: Generate did-extensions registry index | ||
working-directory: tooling | ||
run: npm run registry:generate:index | ||
run: npm run generate | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.W3C_TR_TOKEN }} | ||
W3C_WG_DECISION_URL: https://www.w3.org/2019/did-wg/Meetings/Minutes/2020-06-09-did#resolution1 | ||
SOURCE: index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_EXTENSIONS }} | ||
W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02 | ||
W3C_BUILD_OVERRIDE: | | ||
shortName: did-spec-registries | ||
shortName: did-extensions | ||
specStatus: NOTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "fairx", | ||
"status": "registered", | ||
"status": "deprecated", | ||
"verifiableDataRegistry": "FairX Node", | ||
"contactName": "Michael Dowling", | ||
"contactEmail": "[email protected]", | ||
"contactWebsite": "https://github.com/fairxio/", | ||
"specification": "https://github.com/fairxio/protocol/tree/main/did" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "gwm", | ||
"status": "registered", | ||
"verifiableDataRegistry": "Great Wall Chain", | ||
"contactName": "Great Wall Motor Company Limited", | ||
"contactEmail": "", | ||
"contactWebsite": "", | ||
"specification": "https://github.com/GreatWall-Blockchain/GWDID-Method-Specification/blob/main/README.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "m2m", | ||
"status": "registered", | ||
"verifiableDataRegistry": "Hyperledger Indy", | ||
"contactName": "SmartM2M. Co., Ltd", | ||
"contactEmail": "[email protected]", | ||
"contactWebsite": "https://www.smartm2m.co.kr/", | ||
"specification": "https://github.com/m2mblockchain/DID-Method-m2m/blob/main/README.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "tangle", | ||
"status": "registered", | ||
"status": "deprecated", | ||
"verifiableDataRegistry": "IOTA Tangle", | ||
"contactName": "BiiLabs Co., Ltd.", | ||
"contactEmail": "", | ||
"contactWebsite": "", | ||
"specification": "https://github.com/TangleID/TangleID/blob/develop/did-method-spec.md" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "theseries", | ||
"status": "registered", | ||
"specification": "https://github.com/theseriesteam/tsid-method/blob/main/ts-did-method-specification.md", | ||
"contactName": "Hang Hang", | ||
"contactEmail": "[email protected]", | ||
"contactWebsite": "", | ||
"verifiableDataRegistry": "IPFS" | ||
} |
Oops, something went wrong.