Skip to Content

Trust, Verified.

VeriCerts Zero is the next-generation decentralized identity platform. The easiest and most secure way for developers and organizations to issue and manage Verifiable Credentials.

issue-credential.ts
const vc = await vericerts.issue({
  type: 'EmployeeCredential',
  holder: 'did:example:123...',
  claims: {
    name: 'Taro Yamada',
    department: 'Engineering'
  }
});