Beginner to advanced, without the whiplash.
Most people bounce off blockchain because they start in the middle — a Solidity tutorial before understanding a hash, a DeFi thread before owning a wallet. This roadmap fixes the order. Six stages, each with a goal, curated free resources, a checkpoint, and a mini-project. It powers the Cypher Space learning track at NSS College of Engineering — and it works just as well solo.
Go in order — the smoothness comes from the sequencing. Tick resources as you finish them (progress is saved in your browser). Don't skip checkpoints: each one is the proof you're ready for the next stage. Budget: Stages 0–2 ≈ one month at a few hours a week, the pace our Road to Devcon cohort used. Stages 3–5 are open-ended — that's the point.
Stage 0 · Week 1
Foundations — build the mental model
Before code, before coins: what problem does a blockchain solve, and how do blocks, hashes and consensus actually fit together?
- Curated video path — Phase 1: Quick Introductions (7 videos, ~49 min) Seven short videos, each under 10 minutes, hand-picked from 100 to avoid crypto-promotion and repetition. Expand the list below.
- Anders Brownworth — Visual Blockchain Demo Type into a block and watch every hash after it turn red. The fastest intuition for immutability ever built.
- 3Blue1Brown — But how does bitcoin actually work? The best single visual explanation of digital signatures, proof-of-work and trustless ledgers.
- ethereum.org Learn Hub + Quizzes The canonical, actively-maintained starting point — with built-in quizzes to check yourself.
- Cyfrin Updraft — Blockchain Basics Patrick Collins' free 3-hour basics course — the on-ramp to the entire professional path you'll follow in Stage 3.
Phase 1 videos — the exact watch order
- Blockchain Explained in 2 Minutes 2:21 — the hook
- Blockchain in 7 Minutes 7:03 — hashing, blocks, mining, Walmart case study
- Bitcoin Explained in 5 Minutes 5:42 — the first blockchain application
- Proof of Work Explained 7:54 — why blockchain is trustworthy
- Merkle Trees in Blockchain 8:45 — the data structure behind verification
- What Is Hyperledger? 8:28 — blockchain beyond crypto
- What Is an Ethereum DApp? 9:46 — software without central servers
You can explain to a non-engineer friend, in your own words: what a block is, why hashes make tampering obvious, and what miners actually do. If you can't, rewatch videos 2 and 4.
Play the Hash Chain Simulator on this site: build a chain, tamper with a block, and watch the chain break. Screenshot the broken chain — that screenshot is the core insight of this entire field.
Stage 1 · Weeks 2–3
Core concepts — wallets, keys and the landscape
Go from "I get the idea" to "I hold keys and have sent a transaction." Public/private keys, wallet types, and the four kinds of blockchains.
- Curated video path — Phase 2: Core Concepts (6 videos, ~1h 25m) Medium-depth dives: distributed ledgers, block linking, blockchain types, and how wallets work down to key pairs and address generation.
- MetaMask Learn Interactive lessons on wallets, self-custody and scam-avoidance — do this BEFORE holding anything real.
- Google Cloud Sepolia Faucet The least-frustrating free testnet ETH source — needs only a Google account, no mainnet balance.
- Princeton — Bitcoin & Cryptocurrency Technologies The rigorous university-level treatment. All content free on Coursera; skip the certificate.
- NPTEL — Blockchain and its Applications (IIT Kharagpur) Confirmed 2026 run. The certificate carries real AICTE/recruiter weight in India — worth the 12-week commitment for KTU students.
- LearnWeb3 Free degree-style tracks with an active Discord — a good structured complement if you learn best in cohorts.
Phase 2 videos — the exact watch order
- What is Blockchain? — Introduction 12:49 — distributed ledgers, nodes, consensus
- Blockchain Technology Explained 12:30 — block linking and immutability
- Types of Blockchain Explained 16:15 — public, private, consortium, hybrid
- How Does a Blockchain Work 17:02 — step-by-step, tamper-resistance
- Blockchain Wallet Tutorial 18:24 — key pairs, hot vs cold, signing
- Hyperledger Fabric & How It Works 8:47 — enterprise blockchain internals
You have MetaMask installed, you've backed up the seed phrase on paper (never a screenshot), you hold testnet ETH from a faucet, and you've sent a transaction to a classmate and found it on a block explorer.
Play the Banking Journey Game here, then write a 10-line comparison: which steps of a bank transfer disappear on a blockchain, and which new risks appear in exchange?
Stage 2 · Weeks 3–4
First smart contract — theory becomes practice
The exact path our Road to Devcon workshop cohort followed: smart contract theory, then Remix, then a real deployment to a public testnet you can show anyone.
- Curated video path — Phase 3: Platforms & Smart Contracts (5 videos, ~2h 7m) Smart contract lifecycle, creating a contract in Solidity, the EVM and gas — the direct preparation for hands-on work.
- Curated video path — Phase 4: pick ONE comprehensive deep-dive One long-form session (57 min to 4 h) to consolidate everything. Pick one and finish it — don't watch all four.
- Cyfrin Updraft — Solidity Smart Contract Development The 2026 consensus starting point for Solidity: project-based, modern 0.8.x, 200k+ students. Your main course for this stage.
- Solidity by Example Idiomatic snippets for every language feature — keep it open in a tab alongside whatever course you follow.
- Solidity Official Documentation The authoritative reference — read the security-considerations section much earlier than feels necessary.
- CryptoZombies (optional detour) Fun, zero-setup, gamified — but content is frozen around 2023. One week maximum; never your main track.
Phase 3 + 4 videos — the exact watch order
- What is a Smart Contract? 23:22 — lifecycle, execution, advantages
- Blockchain 101 — full primer 24:11 — consolidates all concepts so far
- How to Create a Smart Contract 24:59 — hands-on Solidity
- Ethereum Explained 28:09 — EVM, gas, Solidity basics
- Hyperledger in Depth 27:05 — permissioned networks, chaincode
- Phase 4 (pick one): 57-min In-Depth · 59-min Developer Tutorial · 2-hour Tutorial · 4-hour Full Course
A smart contract you wrote is live on a public testnet, verified on a block explorer, and you can read/write to it from a browser wallet. This was the graduation bar for our July 2026 workshop — 50+ students cleared it.
Build the workshop classic: a storage DApp — a contract with a mapping, plus a plain HTML/JS page that connects to MetaMask and updates the value on-chain. Team of one, weekend of effort.
Stage 3 · Months 2–3
Real tooling — build like a professional
Remix got you started; now adopt the stack professionals ship with, and build a full dApp end to end.
- Cyfrin Updraft — Foundry Fundamentals + Advanced The de-facto 2026 job-prep path: forge, cast, anvil, fuzz testing and invariant testing, taught project-by-project.
- Foundry Book (official docs) Foundry is the dominant toolchain in 2026 — cheatcodes and fork testing live here.
- Scaffold-ETH 2 The fastest way to ship a real dApp with a frontend — Next.js + wagmi + viem + TypeScript, pre-wired.
- Speedrun Ethereum Ten progressive challenges that convert course knowledge into a public portfolio recruiters actually check.
- wagmi + viem The 2026 default frontend stack — viem/wagmi has displaced ethers.js in new projects (ethers is legacy, web3.js is maintenance-mode).
- Hardhat 3 (second framework) Still the largest installed base and common in enterprise job listings — learn it after Foundry, not instead of it.
- ETHSkills — AI-assisted building Austin Griffith's skill docs for building with AI coding agents — the workflow shift of 2026. Short read, big leverage.
You can scaffold, test (unit + fuzz) and deploy a contract with Foundry, wire it to a Next.js frontend with wagmi/viem, and you have at least 3 Speedrun Ethereum challenges completed under your own name.
Club Bounty Board dApp — members post small tasks with Sepolia ETH bounties; others claim and get paid on completion. Foundry contracts + Scaffold-ETH 2 frontend, deployed and demoed live at a club session.
Stage 4 · Months 3–6
Specialize — security, DeFi, L2s or ZK
Generalists learn; specialists get hired. Pick one lane, go deep, and start breaking things on purpose.
- Cyfrin Updraft — Security & Auditing 24 hours, 281 lessons, 5 mock audits taught by working auditors — the highest-leverage specialization on-ramp for students.
- The Ethernaut (OpenZeppelin) The canonical first security wargame — the exploits interviewers ask about, level by level.
- Damn Vulnerable DeFi v4 The definitive offensive DeFi wargame, rebuilt on Foundry — your Stage 3 skills become attack tooling.
- Solodit — real audit findings Read two real findings a week; this is how contest auditors build pattern recognition.
- DeFiHackLabs — reproduce real hacks Foundry reproductions of real DeFi exploits — straight from my X bookmarks, and the fastest way to feel why security pays.
- evm.codes + noxx EVM Deep Dives Opcode playground plus the standard prose companion — the protocol-engineer lane starts here.
- RareSkills ZK Book The most programmer-friendly zero-knowledge path: algebra → Groth16 → Circom. For the mathematically brave.
- L2BEAT + Flashbots "New to MEV" Rollup-architecture literacy plus the only serious free MEV on-ramp — the L2/DeFi lane.
Security track: 15+ Ethernaut levels and 5+ Damn Vulnerable DeFi challenges cleared, and you can write a findings report in audit format. Other tracks: you can explain rollup stages, a Groth16 proof, or an MEV sandwich at whiteboard depth.
Audit your own club. Take the Stage 3 Bounty Board contract, run a mock audit (severity-classified findings, Solodit-style report), then fix and redeploy. Present the before/after at a club session.
Stage 5 · Ongoing
Ship, compete, earn — join the ecosystem
Hackathons, audit contests, bounties, fellowships and grants: the routes from student to funded builder — several of them India-first.
Aug 6: Devcon 8 discounted-ticket applications close (Indian students ~$25 — apply now) · Aug 8: Road To Devcon online hackathon starts on Devfolio · Sep 4–16: ETHOnline (fully online) · Sep 5–6: ETHKochi, Kochi · Sep 30: EF Road to Devcon 8 India University Program applications close · Nov 3–6: Devcon 8, Mumbai · Nov 6–8: ETHGlobal Mumbai — one trip covers both.
- CodeHawks First Flights Small, scoped audit contests judged like real audits — the fastest credibility ladder for a student security specialist.
- ETHKochi 2026 (Sep 5–6, Kochi) Free, in-state, KSUM-backed, teams of 1–4 — the easiest flagship hackathon for a Kerala club. Applications open on Devfolio now.
- ETHGlobal — ETHOnline (Sep) + ETHGlobal Mumbai (Nov 6–8) ETHOnline is async and needs no travel; ETHGlobal Mumbai runs at BKC right after Devcon — polish one project across both.
- Devfolio hackathon listings The home of Indian web3 hackathons — set up your profile now; the Road To Devcon online hackathon (from Aug 8) runs here.
- EF Road to Devcon 8 — India University Program Funding for campus clubs to run workshops and hackathons; funded initiatives can request up to 5 Devcon tickets. Cypher Space is a grantee — your club can be too. Deadline Sep 30.
- Devcon 8 — Mumbai, Nov 3–6 The first Devcon in India. Indian-student tickets ~$25; discounted applications close Aug 6, and the Devcon Scholars program covers travel for those who need full support.
- Fellowships: yAudit, EF Next Billion, Polygon, MLH Web3 Fellowships fast-track careers past the hackathon grind — mentorship from protocol teams, sometimes stipends. From my X bookmarks; yAudit is the security-auditor route.
- Earning routes: Immunefi, Sherlock, Cantina, Gitcoin Bug bounties and audit contests are realistic first Web3 income — after Stage 4. Immunefi absorbed Code4rena's community in 2026; first valid findings typically come 6–12 months into focused study.
- Kerala Blockchain Academy Kerala government's blockchain centre of excellence (Digital University Kerala): Ethereum developer programs, free certified courses, and college Innovation Clubs.
- web3.career — India board 750+ India listings with intern/entry filters. The strongest junior route remains: hackathon wins + a public Speedrun/First Flights portfolio + showing up at Devcon.
You can point to a public record — a First Flight submission with valid findings, a hackathon project page, or a Speedrun portfolio — and you're registered for at least one in-person event with the club.
One team, one Mumbai trip, two events. Enter ETHKochi (Sep) as the warm-up, ship the same idea properly in ETHOnline (Sep), then take the polished project to ETHGlobal Mumbai (Nov 6–8) — attending Devcon 8 (Nov 3–6) on student tickets in the same trip.
The landscape in 2026 — save yourself the dead ends
Who to follow on X
Curated from my own bookmarks — accounts whose threads repeatedly ended up in this roadmap.
Official Devcon 8 feed — ticket waves, scholar and speaker deadlines. They announced the Road to Devcon academic program our club was funded under.
Cyfrin Updraft author — the consensus "become a smart contract dev" path runs through his free courses.
EF builder growth — Speedrun Ethereum, BuidlGuidl, and the AI-assisted-building shift (his threads on this are in my bookmarks).
Protocol direction. Follow once you're past Stage 2 — don't start here.
Regular smart-contract security resource threads — the DeFiHackLabs pointer in Stage 4 came from one of them.
Graduates Speedrun Ethereum finishers into funded open-source work — the bridge from Stage 3 to real shipping.
The destination: Devcon 8, Mumbai
Devcon 8 happens November 3–6, 2026 at the Jio World Centre, Mumbai — the first Devcon in India. Cypher Space, our blockchain interest group at NSS College of Engineering, ran an Ethereum Foundation "Road to Devcon 8" builder series in July 2026 built on the early stages of this exact progression: reading groups, a hands-on Solidity workshop, and a mini-hackathon. Upcoming club sessions (Solidity Workshop, AI in Blockchain, CypherHack 2026) continue down this page. Follow along at cypherspace.in and @EFDevcon.