Package

Install the NeutralToken SDK to integrate privacy-first credential verification into your app.

npm install @neutraltoken/core

See the NeutralToken SDK repository for documentation and examples.

NeutralToken Widget

The NeutralToken Widget is an embeddable JavaScript SDK for verifying user eligibility using the NeutralToken protocol.

npm install @neutraltoken/core

Usage example:

import { renderButton } from '@neutraltoken/core';

renderButton('#verify-container', {
  credential_profile: "jwt-basic",
  min_age: 21,
  onSuccess: (payload) => console.log("✅ Verified", payload),
  onError: (err) => console.error("❌ Failed", err)
});