Quickstart
Pick your path
1. Install SDK
npm install @neus/sdk2. Create a Client
import { NeusClient } from '@neus/sdk';
const client = new NeusClient();3. Verify Something
const proof = await client.verify({
verifier: 'ownership-basic',
content: 'Hello NEUS',
wallet: window.ethereum,
});
const qHash = proof.qHash; // Proof ID (qHash)Production defaults (recommended)
3b. Poll status (when verifiers run async)
4. Gate Your UI
5. Server-side gating (minimal eligibility)
What's Next?
Last updated
Was this helpful?

