Skip to content

Commit

Permalink
Merge pull request #77 from dyne/feat/dyne_driver
Browse files Browse the repository at this point in the history
add did:dyne driver
  • Loading branch information
peacekeeper authored Dec 16, 2023
2 parents 7551a36 + c937d4e commit 1f7494c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ You should then be able to create/update/deactivate identifiers locally using si
curl -X POST 'http://localhost:9080/1.0/create?method=oyd' -d '{"didDocument":{"@context":"https://www.w3.org/ns/did/v1","authentication":[]}}'
curl -X POST 'http://localhost:9080/1.0/create?method=cheqd' -d '{"didDocument":{...}}'
curl -X POST 'http://localhost:9080/1.0/create?method=ethr' -d '{"options":{"network":"goerli"}}'
curl -X POST 'http://localhost:9080/1.0/create?method=dyne' -d '{"didDocument":{}}'

If this doesn't work, see [Troubleshooting](/docs/troubleshooting.md).

Expand All @@ -48,6 +49,7 @@ Are you developing a DID method and Universal Registrar driver? Click [Driver De
| [did-oyd](https://github.com/OwnYourData/oydid/tree/main/uni-registrar-driver-did-oyd) | 0.5.0 | [0.5](https://ownyourdata.github.io/oydid/) | [oydeu/oydid-registrar](https://hub.docker.com/r/oydeu/oydid-registrar/)
| [did-cheqd](https://github.com/cheqd/did-registrar) | 2.0.6 | [1.0](https://docs.cheqd.io/identity/architecture/adr-list/adr-001-cheqd-did-method) | [cheqd/did-registrar](https://github.com/cheqd/did-registrar/pkgs/container/did-registrar)
| [did-ethr](https://github.com/danubetech/uni-registrar-driver-did-ethr/) | 0.2.0 | [0.0](https://github.com/decentralized-identity/ethr-did-resolver/blob/master/doc/did-method-spec.md) | [universalregistrar/driver-did-ethr](https://hub.docker.com/r/universalregistrar/driver-did-ethr/)
| [did-dyne](https://github.com/dyne/W3C-DID/tree/main/universal-registrar) | 0.2.0 | [1.0](https://dyne.org/W3C-DID/) | [dyne/did-registrar](https://hub.docker.com/r/dyne/did-registrar)

## More Information

Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,7 @@ services:
uniregistrar_driver_did_ethr_ethrNetworkMetaPublicKeys: ${uniregistrar_driver_did_ethr_ethrNetworkMetaPublicKeys}
ports:
- "9090:3000"
driver-did-dyne:
image: dyne/did-registrar:0.2
ports:
- "9091:3000"
3 changes: 3 additions & 0 deletions uni-registrar-web/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ uniregistrar:
- method: ethr
url: http://driver-did-ethr:9080/ethr/
propertiesEndpoint: 'true'
- method: dyne
url: http://driver-did-dyne:3000/
propertiesEndpoint: 'true'

0 comments on commit 1f7494c

Please sign in to comment.