Skip to content

Commit bc14a72

Browse files
committed
Rename the SOLID driver to SOL to avoid clashes with https://solidproject.org/
1 parent edb978d commit bc14a72

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You should then be able to resolve identifiers locally using simple `curl` reque
6464
curl -X GET http://localhost:8080/1.0/identifiers/did:vaa:3wJVWDQWtDFx27FqvSqyo5xsTsxC
6565
curl -X GET http://localhost:8080/1.0/identifiers/did:unisot:1EjHm7VtgsqNzCkvA8XRgGXZ1UKo1txSM4
6666
curl -X GET http://localhost:8080/1.0/identifiers/did:bitxhub:appchain001:0xc7F999b83Af6DF9e67d0a37Ee7e900bF38b3D013
67-
curl -X GET http://localhost:8080/1.0/identifiers/did:solid:DSb8Guj9tB1jvsyqrsE3Yi44hwnzrVVQc2gcS1J1dUxy
67+
curl -X GET http://localhost:8080/1.0/identifiers/did:sol:ygGfLvAyuRymPNv2fJDK1ZMpdy59m8cV5dak6A8uHKa
6868
curl -X GET http://localhost:8080/1.0/identifiers/did:lit:AEZ87t1bi5bRxmVh3ksMUi
6969

7070
If this doesn't work, see [Troubleshooting](/docs/troubleshooting.md).
@@ -115,7 +115,7 @@ Are you developing a DID method and Universal Resolver driver? Click [Driver Dev
115115
| [did-vaa](https://github.com/caict-develop-zhangbo/uni-resolver-driver-did-vaa)|1.0.0|[1.0 WD](https://w3c.github.io/did-core/)|[1.0 WD](https://github.com/caict-develop-zhangbo/vaa-method)|[caict/driver-did-vaa](https://hub.docker.com/repository/docker/caictdevelop/driver-did-vaa)
116116
| [did-unisot](https://gitlab.com/unisot-did/unisot-did-driver)|1.0.0|[1.0 WD](https://w3c.github.io/did-core/)|[1.0.0](https://gitlab.com/unisot-did/unisot-did-method-specification)|[unisot/unisot-did-driver](https://hub.docker.com/r/unisot/unisot-did-driver)
117117
| [did-bitxhub](https://github.com/meshplus/driver-did-bitxhub) | 1.0.0 | [1.0.0 WD](https://w3c.github.io/did-core/) | (missing) | [meshplus/driver-did-bitxhub](https://hub.docker.com/repository/docker/meshplus/driver-did-bitxhub) |
118-
| [did-solid](https://github.com/identity-com/solid-did)|1.0.0|[1.0 WD](https://w3c.github.io/did-core/)|[1.0.0](https://github.com/identity-com/solid-did/)|[identitydotcom/driver-did-solid](https://hub.docker.com/r/identitydotcom/driver-did-solid)
118+
| [did-sol](https://github.com/identity-com/sol-did)|1.0.0|[1.0 WD](https://w3c.github.io/did-core/)|[1.0.0](https://github.com/identity-com/sol-did/)|[identitydotcom/driver-did-sol](https://hub.docker.com/r/identitydotcom/driver-did-sol)
119119
| [did-lit](https://github.com/ibct-dev/lit-resolver) | 0.1.0 | [1.0 WD](https://w3c.github.io/did-core/) | [0.1.0](https://github.com/ibct-dev/lit-DID/blob/main/docs/did:lit-method-spec_eng_v0.1.0.md) | [ibct/driver-did-lit](https://hub.docker.com/r/ibct/driver-did-lit)
120120

121121
## More Information

config.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@
203203
"testIdentifiers": [ "did:bitxhub:appchain001:0xc7F999b83Af6DF9e67d0a37Ee7e900bF38b3D013" ]
204204
},
205205
{
206-
"pattern": "^(did:solid:.+)$",
207-
"url": "http://driver-did-solid:8080/",
208-
"testIdentifiers": [ "did:solid:DSb8Guj9tB1jvsyqrsE3Yi44hwnzrVVQc2gcS1J1dUxy" ]
206+
"pattern": "^(did:sol:.+)$",
207+
"url": "http://driver-did-sol:8080/",
208+
"testIdentifiers": [ "did:sol:ygGfLvAyuRymPNv2fJDK1ZMpdy59m8cV5dak6A8uHKa" ]
209209
},
210210
{
211211
"pattern": "^(did:lit:(?:[1-9A-HJ-NP-Za-km-z]{21,22}))$",

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ services:
193193
image: meshplus/driver-did-bitxhub:latest
194194
ports:
195195
- "8117:8080"
196-
driver-did-solid:
197-
image: identitydotcom/driver-did-solid:0.1.0
196+
driver-did-sol:
197+
image: identitydotcom/driver-did-sol:0.1.0
198198
ports:
199199
- "8118:8080"
200200
driver-did-lit:

0 commit comments

Comments
 (0)