惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
MyScale Blog
MyScale Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
MongoDB | Blog
MongoDB | Blog
I
InfoQ
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 27: How Explaining Solana's Account Model Made Me Fin...
Samuel Akoji · 2026-05-18 · via DEV Community

Today's Challenge Was Different

Day 27 of 100 Days of Solana asked me to do something I've never done in a coding challenge before. Put the keyboard down and just explain something.

No code today. Write a DEV article explaining Solana's account model to a Web2 developer.

I've been working through this material for 26 days. I thought I understood it. Writing this post showed me exactly where my understanding had gaps, and filling those gaps was the most useful thing I've done all week.

What I Thought I Knew

Coming into Day 27, I could have given you a reasonable summary of accounts:

  • Everything on Solana is an account
  • Accounts have lamports, owner, data, and executable fields
  • Programs and data are separated
  • Rent exemption keeps accounts alive

I knew the vocabulary. I could use it correctly in conversation. But "knowing vocabulary" is not the same as understanding something well enough to explain it to someone who has never heard of Solana.

The First Gap: What "Owner" Actually Means

When I sat down to write the explanation, I started with the owner field. And I immediately hit a wall.

I knew that every account has an owner a program whose address is stored in the owner field. I knew that only the owner can modify the account's data. But when I tried to explain why this matters and how it works in practice, I realized I'd been holding a fuzzy picture.

Here's what I had to think through to write clearly about it:

The owner field is not advisory. It's not a convention. The Solana runtime checks it on every single transaction for every account involved. If your transaction tries to write to an account whose owner doesn't match your program's address, the runtime rejects it before it even executes. This isn't a permission denied error the transaction literally never runs.

Once I understood that the runtime itself enforces ownership, the whole model clicked differently. It's not access control that your program implements. It's access control that the network implements, using data your program wrote.

That distinction matters a lot when you're thinking about security.

The Second Gap: Why Separation of Programs and Data Is Actually Clever

I've read "programs and data are separated on Solana" probably fifty times. I understood it as a fact. But explaining why it's designed this way forced me to think it through.

The first reason is upgradeability, and once I spelled it out, it was obvious: a program that holds no mutable state can be replaced (upgraded) without any data migration. On Ethereum, upgrading a smart contract's logic while preserving its state is a complex operation that requires proxy patterns and careful migration. On Solana, you just deploy new bytecode to the program account. The data accounts keep working because they're separate.

The second reason is parallel execution, and this one is less obvious. Solana can run transactions in parallel if they don't touch the same accounts. By separating program logic (static, in the program account) from program state (dynamic, in data accounts), Solana gives its scheduler the information it needs to identify independent transactions and run them simultaneously.

If programs stored their own state like Ethereum contracts do every transaction touching the same program would be serialized. Separation is what makes parallelism possible at the program level.

I knew Solana was fast. I didn't fully understand that the account model design is part of why.

The Third Gap: Rent Exemption Is a Deposit, Not a Fee

I've been thinking about rent exemption wrong. I thought of it as a recurring cost something you pay to keep an account alive. It isn't.

Rent exemption is a one-time deposit. You pay it once when you create an account, it sits in the account's lamports balance, and you get it back in full when you close the account. The "exemption" is from ongoing rent: you pay enough upfront that the account is exempt from ever being charged rent again.

The amount is proportional to how much data the account stores roughly 0.002 SOL per kilobyte. An empty account needs less than 0.001 SOL. A large data account might need 0.01 SOL or more.

When I started thinking of it as a deposit instead of a fee, the UX decisions in Solana apps started making more sense. When a wallet prompts you to "close unused token accounts to recover SOL," it's offering to delete those accounts and return the deposits to you. When receiving a new token costs a small amount of SOL, it's funding the deposit for the new token account.

What Writing Teaches You

The Day 27 challenge is smart. Writing forces a different kind of understanding than coding.

When you code, you can get away with fuzzy understanding. You try things, see what works, copy patterns. The feedback loop is "did it compile and run?" You can write working Solana code without fully understanding why the account model is designed the way it is.

When you write an explanation for another developer, the feedback loop is "does this actually make sense?" You can't hide behind working code. You have to have a clear model in your head, because if your model is fuzzy, your explanation will be fuzzy, and you'll know it.

Three things I thought I understood, I actually only half-understood:

  • Owner enforcement (runtime-level, not application-level)
  • Program/data separation (the reason is upgradeability AND parallelism, not just one or the other)
  • Rent exemption (deposit, not fee)

All three gaps closed today. Not from reading documentation. From trying to explain it well.

Tomorrow

Day 28 continues Arc 4. We're going deeper into the account model I expect program derived addresses (PDAs) are coming. After today, I feel genuinely ready for that instead of just following along.

If you're on the fence about doing the writing days: do them. They're the most valuable days in the challenge, precisely because they're uncomfortable.