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.
Combat bots and spam using ZKScore
async function canPostContent(user) { const score = await zkScore.getScore(user); if (score.total < 50) { return { allowed: false, reason: 'Minimum score not met' }; } return { allowed: true }; }