From ccb98f8e0d37f0a8474ad3b3c4db2878f7627cd2 Mon Sep 17 00:00:00 2001 From: Rishabh Singh Date: Fri, 21 Nov 2025 15:22:27 +0530 Subject: [PATCH 1/2] Add TrustVC to implementations --- implementations/TrustVC.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 implementations/TrustVC.json diff --git a/implementations/TrustVC.json b/implementations/TrustVC.json new file mode 100644 index 0000000..f2dac51 --- /dev/null +++ b/implementations/TrustVC.json @@ -0,0 +1,26 @@ +{ + "name": "TrustVC", + "implementation": "TrustVC Implementation", + "issuers": [ + { + "id": "did:web:trustvc.github.io:did:1", + "endpoint": "https://w3ctest.dev.trustvc.tech/dev/credentials/imda/issue", + "supports": { + "vc": ["2.0"] + }, + "tags": ["vc2.0", "ecdsa-sd-2023"], + "supportedEcdsaKeyTypes": ["P-256"] + } + ], + "verifiers": [ + { + "id": "did:web:trustvc.github.io:did:1", + "endpoint": "https://w3ctest.dev.trustvc.tech/dev/credentials/imda/verify", + "supports": { + "vc": ["2.0"] + }, + "tags": ["vc2.0", "ecdsa-sd-2023"], + "supportedEcdsaKeyTypes": ["P-256"] + } + ] +} From bfb895c8c2480bd2e5ae53db103d10134015c225 Mon Sep 17 00:00:00 2001 From: RishabhS7 <59636880+RishabhS7@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:58:35 +0530 Subject: [PATCH 2/2] fix: pdate TrustVC endpoints to remove 'dev' prefix --- implementations/TrustVC.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/implementations/TrustVC.json b/implementations/TrustVC.json index f2dac51..e5ff751 100644 --- a/implementations/TrustVC.json +++ b/implementations/TrustVC.json @@ -4,7 +4,7 @@ "issuers": [ { "id": "did:web:trustvc.github.io:did:1", - "endpoint": "https://w3ctest.dev.trustvc.tech/dev/credentials/imda/issue", + "endpoint": "https://w3ctest.dev.trustvc.tech/credentials/imda/issue", "supports": { "vc": ["2.0"] }, @@ -15,7 +15,7 @@ "verifiers": [ { "id": "did:web:trustvc.github.io:did:1", - "endpoint": "https://w3ctest.dev.trustvc.tech/dev/credentials/imda/verify", + "endpoint": "https://w3ctest.dev.trustvc.tech/credentials/imda/verify", "supports": { "vc": ["2.0"] },