Skip to content

Commit

Permalink
feat: New driver did:algo (#409)
Browse files Browse the repository at this point in the history
* New driver `did:algo`

Documentation is available at:
https://github.com/algorandfoundation/did-algo/blob/main/DRIVER.md

* add image tag

* remove uninteded changes to 'application.yml'
  • Loading branch information
bcessa committed Mar 4, 2024
1 parent 61d0974 commit 31c8e75
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ You should then be able to resolve identifiers locally using simple `curl` reque
curl -X GET http://localhost:8080/1.0/identifiers/did:keri:EKYGGh-FtAphGmSZbsuBs_t4qpsjYJ2ZqvMKluq9OxmP
curl -X GET http://localhost:8080/1.0/identifiers/did:webs:peacekeeper.github.io:did-webs-iiw-tutorial:EKYGGh-FtAphGmSZbsuBs_t4qpsjYJ2ZqvMKluq9OxmP
curl -X GET http://localhost:8080/1.0/identifiers/did:content:3SqTXtoMpiPeNo5vEP2p7yNGQUeCGjqW1wnctv8yaCWXojD29GYcUEo
curl -X GET http://localhost:8080/1.0/identifiers/did:algo:426165491c77a6c95eeed8d0420b38b0afbe9057c4f33147eb90fafd32aaad22-591154170

You can also use an "Accept" header to request the DID document in a specific representation, e.g.:

Expand Down Expand Up @@ -173,6 +174,8 @@ Are you developing a DID method and Universal Resolver driver? Click [Driver Dev
| [did-keri](https://github.com/hyperledger-labs/did-webs-resolver) | 0.1 | [0.1](https://trustoverip.github.io/tswg-did-method-webs-specification/) | [gleif/did-keri-resolver](https://hub.docker.com/r/gleif/did-keri-resolver) | KERI |
| [did-webs](https://github.com/hyperledger-labs/did-webs-resolver) | 0.1 | [0.1](https://trustoverip.github.io/tswg-did-method-webs-specification/) | [gleif/did-webs-resolver](https://hub.docker.com/r/gleif/did-webs-resolver) | KER, Web |
| [did-content](https://github.com/KataruInc/did-content-spec) | 0.1 | [0.1](https://github.com/KataruInc/did-content-spec) | [kataru/content-did-driver](https://hub.docker.com/repository/docker/kataru/content-did-driver) | Content DID |
| [did-algo](https://github.com/algorandfoundation/did-algo) | 0.6.0 | [2.0](https://github.com/algorandfoundation/did-algo/blob/main/README.md) | [ghcr.io/aidtechnology/algoid-resolver](https://ghcr.io/aidtechnology/algoid-resolver) | Algorand Blockchain DID Method |


## 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 @@ -287,3 +287,7 @@ services:
image: kataru/content-did-driver:latest
ports:
- "8148:8888"
driver-did-algo:
image: ghcr.io/aidtechnology/algoid-resolver:0.6.0
ports:
- "8149:9091"
4 changes: 4 additions & 0 deletions uni-resolver-web/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,3 +322,7 @@ uniresolver:
url: http://driver-did-content:8888/
testIdentifiers:
- did:content:3SqTXtoMpiPeNo5vEP2p7yNGQUeCGjqW1wnctv8yaCWXojD29GYcUEo
- pattern: "^(did:algo:.+)$"
url: http://driver-did-algo:9091/
testIdentifiers:
- did:algo:426165491c77a6c95eeed8d0420b38b0afbe9057c4f33147eb90fafd32aaad22-591154170

0 comments on commit 31c8e75

Please sign in to comment.