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.
Top comments (0)