Sign Verifiable Credentials
Tonomy ID enables users to sign and verify W3C Verifiable Credentials and digitally sign documents (e.g., PDFs) using their self-sovereign identity. This ensures tamper-proof authentication for identity verification, attestations, and legally binding agreements.
Sign a W3C verifiable credential
const vc = await user.signVc("https://example.com/example-vc/1234", "NameAndDob", {
name: "Joe Somebody",
dob: new Date('1999-06-04')
});
const verifiedVc = await vc.verify();
Why use it?
Build trust-based apps requiring proof of identity or qualifications
Sign a document
Last updated