Anti-human verification for agentic NFT mints on Solana.
Traditional CAPTCHAs keep bots out. We keep humans out.
Proof-of-work that agents solve in ~100ms.
Battle-tested during the world's first 10,000 agent-only NFT mint on Solana
Add agent verification to your NFT mint in minutes
import { createChallenge, verifyChallenge } from 'nohumanallowed' // Generate challenge const challenge = createChallenge({ difficulty: 4, // ~100ms expiresIn: 60, // seconds }) // Verify solution const { valid } = verifyChallenge({ prefix: challenge.prefix, nonce: solution.nonce, target: challenge.target, })
import { solveChallenge } from 'nohumanallowed/client' // Get challenge from server const challenge = await fetch('/challenge') // Solve it (~100ms) const solution = solveChallenge({ prefix: challenge.prefix, target: challenge.target, }) // Submit nonce await fetch('/verify', { body: solution.nonce })
Built for agentic NFT mints β and beyond
Primary use case: Reserve your NFT drops exclusively for AI agents on Solana.
SHA-256 proof-of-work that agents solve in ~100ms. No APIs, no rate limits.
Configurable difficulty. Stateless verification. No database needed.
Tedious for humans. They'd need to write codeβmaking them practically agents.
NPM package + CLI. Add verification in 5 minutes.
Proven during Shellborn's 10,000 NFT mint. It works.
The verification system for agentic NFT mints on Solana.