diff --git a/README.md b/README.md index 828f4a334..1c66aa968 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ You should then be able to resolve identifiers locally using simple `curl` reque curl -X GET http://localhost:8080/1.0/identifiers/did:tgrid:trustgrid:dev:QjA1qdXKmxzgK4u8mFoBpF curl -X GET http://localhost:8080/1.0/identifiers/did:near:CF5RiJYh4EVmEt8UADTjoP3XaZo1NPWxv6w5TmkLqjpR curl -X GET http://localhost:8080/1.0/identifiers/did:empe:testnet:006308981b61932c5eaae1c39ace8ee3892f4a1f + curl -X GET http://localhost:8080/1.0/identifiers/did:bsv:49e48f452457524f036a3f386388500a6256a9fd21e0e003295bbf3a0455baab You can also use an "Accept" header to request the DID document in a specific representation, e.g.: @@ -194,18 +195,18 @@ Are you developing a DID method and Universal Resolver driver? Click [Driver Dev | [did-cndid](https://github.com/teleinfo-bif/uni-resolver-driver-did-cndid) | 1.0.0 | [1.0.0](https://github.com/teleinfo-bif/cndid/blob/main/doc/en/CNDID%20Protocol%20Specification.md) | [teleinfo/driver-did-cndid](https://hub.docker.com/repository/docker/teleinfo/driver-did-cndid) | CN DID | | [did-near](https://github.com/KayTrust/driver-did-near) | 1.0.0 | [0.1.0](https://github.com/DTI-web3/did-near/blob/master/README.md) | [kaytrust/driver-did-near](https://github.com/KayTrust/driver-did-near/pkgs/container/driver-did-near) | NEAR DID | | [did-tgrid](https://github.com/tgrid-usa/uni-resolver-driver-did-trustgrid) | 1.0.0 | [1.0.0](https://github.com/tgrid-usa/uni-resolver-driver-did-trustgrid/blob/main/README.md) | [trustgrid/uni-resolver-driver-did-tgrid](https://hub.docker.com/r/trustgrid01/uni-resolver-driver-did-tgrid) | TrustGrid DID -| [did-empe](https://github.com/empe-io/uni-resolver-driver-did-empe) | 1.0.0 | [1.0.0](https://github.com/empe-io/uni-resolver-driver-did-empe/blob/main/README.md) | [empe/driver-did-empe](https://github.com/empe-io/uni-resolver-driver-did-empe/pkgs/container/uni-resolver-driver-did-empe) | EMPE DID | - +| [did-empe](https://github.com/empe-io/uni-resolver-driver-did-empe) | 1.0.0 | [1.0.0](https://github.com/empe-io/uni-resolver-driver-did-empe/blob/main/README.md) | [empe/driver-did-empe](https://github.com/empe-io/uni-resolver-driver-did-empe/pkgs/container/uni-resolver-driver-did-empe) | EMPE DID | +| [did-bsv](https://github.com/teranode-group/uni-resolver-driver-did-bsv) | 1.3.1 | [1.0.0](https://github.com/teranode-group/TNG-Identity-bsvdid-method) | [teranodegroup/universalresolver](https://hub.docker.com/repository/docker/teranodegroup/universalresolver/general) | BSV DID| ## More Information - * [Driver Development](/docs/driver-development.md) - * [Continuous Integration and Delivery](/docs/continuous-integration-and-delivery.md) - * [Development System](/docs/dev-system.md) - * [Branching Strategy](/docs/branching-strategy.md) - * [Design Goals](/docs/design-goals.md) - * [Troubleshooting](/docs/troubleshooting.md) - * [Java Components](/docs/java-components.md) +* [Driver Development](/docs/driver-development.md) +* [Continuous Integration and Delivery](/docs/continuous-integration-and-delivery.md) +* [Development System](/docs/dev-system.md) +* [Branching Strategy](/docs/branching-strategy.md) +* [Design Goals](/docs/design-goals.md) +* [Troubleshooting](/docs/troubleshooting.md) +* [Java Components](/docs/java-components.md) ## About diff --git a/docker-compose.yml b/docker-compose.yml index de2886a12..6d556d815 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -375,7 +375,7 @@ services: ports: - 8155:8080 environment: - #- NODE_1_URL:https://quarkid-main.extrimian.com/ + #- NODE_1_URL:https://quarkid-main.extrimian.com/ NODE_1_URL: ${uniresolver_driver_did_quarkid_node_url} #https://lbquarkid2.extrimian.com/ NODE_1_PATTERN: ${uniresolver_driver_did_quarkid_node_pattern} #did:quarkid NODE_1_BEHAVIOR: ${uniresolver_driver_did_quarkid_node_behavior} #1 @@ -413,3 +413,8 @@ services: DID_METHODS: ${uniresolver_driver_did_empe_did_methods} ports: - "8163:8080" + + driver-did-bsv: + image: teranodegroup/universalresolver:1.3.1-RC-v10-g06ab24e + ports: + - "8115:9115" diff --git a/uni-resolver-web/src/main/resources/application.yml b/uni-resolver-web/src/main/resources/application.yml index 3d52fdcf8..c075f133a 100644 --- a/uni-resolver-web/src/main/resources/application.yml +++ b/uni-resolver-web/src/main/resources/application.yml @@ -404,3 +404,8 @@ uniresolver: testIdentifiers: - did:empe:02bbae4a3c51a3134d0aa4bfe1e7ed19c6debe84 + - pattern: "^(did:bsv:.+)$" + url: ${uniresolver_web_driver_url_bsv:http://driver-did-bsv:9115/} + testIdentifiers: + - did:bsv:adaf8c37db395b05bde08ddfb47eb898108dcdef8cf8dac3d9d1bc587d57828e + - did:bsv:49e48f452457524f036a3f386388500a6256a9fd21e0e003295bbf3a0455baab \ No newline at end of file