Deploying the Verifier

What We Are Doing:

  • Creating a Verifier service using One-Click Deployment.

  • The Verifier will let us verify that a user`s credential meets certain conditions (e.g., age ≥ 18).

Why: The Verifier ensures that presented credentials are valid, coming from a trusted Issuer, and meet the required criteria. It automates cryptographic checks and provides a simple API.

Steps:

  1. In the One-Click Deployment platform, create a new Verifier.

  2. Once active, note down:

    • VERIFIER_SERVICE_URL (e.g., https://your-verifier.evdi.app)

    • VERIFIER_CLIENT_SECRET

  3. Update .env:

    VERIFIER_SERVICE_URL=https://your-verifier.evdi.app
    VERIFIER_CLIENT_SECRET=your-verifier-secret

Next, we`ll configure a verification flow in our backend.

Last updated