Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Integrate ZKScore with social platforms and communities
async function getUserVerificationLevel(address) { const score = await zkScore.getScore(address); const attestations = await trustRegistry.getReceivedAttestationUIDs(address); if (score.total >= 500 && attestations.length >= 3) return 'verified'; if (score.total >= 300) return 'trusted'; return 'new'; }
async function isLikelyBot(address) { const score = await zkScore.getScore(address); return score.total < 50; }