Add TrustVC to implementations#115
Conversation
|
@RishabhS7 it seems the endpoints defined here are currently offline. I'm happy to get this merged in once they're stable. Cheers! |
@BigBlueHat I have updated the endpoints. Should be working fine now. Thanks. |
@RishabhS7 I'm getting "timeout" errors when trying this locally:
Could you take another look? Maybe it's just a temporary outage? |
Hi @BigBlueHat The server seems to be operational. The previous issue appears to have been a temporary outage. Verification TestI successfully tested the credential issuance endpoint using the following curl -X POST https://w3ctest.dev.trustvc.tech/credentials/imda/issue \
-H "Content-Type: application/json" \
-d '{
"credential": {
"@context": [
"https://www.w3.org/ns/credentials/v2"
],
"type": ["VerifiableCredential"],
"issuer": "did:web:trustvc.github.io:did:1",
"credentialSubject": {
"id": "did:example:123",
"name": "Test Subject"
}
},
"options": {}
}'Initial AssessmentBased on the successful test execution, the previous connectivity issue appears to have been a temporary outage that has now been resolved. The service is currently responding as expected to credential issuance requests. Next StepsPlease review the attached test case execution screenshots below for detailed validation results. The evidence indicates that all system components are functioning within expected parameters. Screenshot of the test cases running successfully is available below.
|

Add TrustVC Implementation
Summary
This PR adds the TrustVC implementation to the W3C Verifiable Credentials Test Suite implementations registry.
Implementation Details
did:web:trustvc.github.io:did:1https://w3ctest.dev.trustvc.tech/credentials/imda/issuehttps://w3ctest.dev.trustvc.tech/credentials/imda/verifySupported Features
Tags
vc2.0- VC Data Model 2.0 complianceecdsa-sd-2023- ECDSA Selective Disclosure cryptosuiteTesting
The implementation has been tested against the W3C VC Data Model 2.0 test suite and passes the required conformance tests.
Endpoints Verification
Additional Notes
This implementation uses the
@trustvc/trustvclibrary and provides full support for W3C Verifiable Credentials v2.0 with ECDSA-SD-2023 signatures, enabling selective disclosure capabilities.