A decentralized, AI-powered learning platform built for autodidacts, builders, and technical creators who learn best by doing.

OnlyNerds is a decentralized, AI-powered learning platform built for autodidacts, builders, and technical creators who learn best by doing. Instead of passive videos or centralized LMS systems, OnlyNerds uses forkable courses, AI evaluation agents, and on-chain skill proofs to build a transparent and verifiable upskilling ecosystem.
The platform was built during the BNB Chain AI Hackathon at IIT Delhi, where it placed as Runners-Up out of 30+ finalists and generated more than 100 early signups within the first day. The goal was to design a learning environment where ownership, credibility, and proof-of-knowledge are embedded directly into the infrastructure, rather than controlled by centralized institutions.
EdTech today is dominated by centralized platforms, low-quality content factories, and unverifiable credentials. Learners cannot prove what they know, creators cannot remix or improve existing material, and review systems are gamed or manipulated. OnlyNerds proposes a new model: open, verifiable, and community-curated.
OnlyNerds introduces a decentralized, AI-native learning architecture where courses can be forked like Git repositories, learners earn dynamic on-chain Skill NFTs, and all progress is validated through a transparent proof-of-knowledge system.
OnlyNerds uses a milestone-driven learning loop. Each course is structured as a sequence of verifiable tasks. AI agents evaluate submissions, update learner models, and mint on-chain artifacts reflecting progress. Every contribution, remix, or performance metric is recorded as verifiable data.
The architecture splits responsibilities across on-chain verification, decentralized storage, and AI-assisted learning logic. Smart contracts maintain the Skill NFT lifecycle and course metadata hashes, while IPFS stores course content. AI agents, running through hosted models or local inference, generate evaluations and learning feedback.
Smart Contracts:
- CourseRegistry: content metadata + versioning
- SkillNFT: dynamic, evolving proof-of-knowledge token
- ReputationModule: curated validator system
Storage:
- IPFS via Web3.Storage / Bundlr
AI Evaluation:
- HF models (LLaMA / Mistral)
- Local inference fallback for offline flows
git clone https://github.com/onlynerds/onlynerds-platform
cd onlynerds
npm install
# Initialize local chain
npx hardhat node
# Deploy contracts
npx hardhat run scripts/deploy.ts --network localhost
npm run dev