SDK Reference
Install
npm install @neus/sdkCreate a proof (browser wallet flow)
import { NeusClient } from '@neus/sdk';
const client = new NeusClient({ apiUrl: 'https://api.neus.network' });
const res = await client.verify({
verifier: 'ownership-basic',
content: 'Hello NEUS',
wallet: window.ethereum
});
// Proof ID (qHash): stable identifier you can store and use for status polling
const proofId = res.qHash;
const status = await client.getStatus(proofId);Client configuration
Create a proof (server / manual signing)
What verifiers are available?
Gate checks (recommended for server-side gating)
Resilience & Polling
React widgets
Reference docs
Last updated
Was this helpful?

