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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

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
Solana's Account Model Explained for Web2 Developers
Erick Carvajal · 2026-06-03 · via DEV Community

When I first started learning Solana, the account model was probably the most confusing concept.

Coming from Web2 development, I was used to thinking in terms of applications, databases, users, and servers. Then I opened Solana Explorer and suddenly everything seemed to be an account.

  • Wallets are accounts.
  • Programs are accounts.
  • Token balances are accounts.

Even data storage is handled through accounts.

At first, it felt strange. After spending time building on Solana, I realized the account model is actually one of the network's most elegant design choices.

Think of Solana Like a Filesystem

The easiest way to understand Solana is to imagine an operating system filesystem.

Solana and Filesystem

Every file has:

  • An address or location
  • Metadata
  • Content
  • Permissions

Solana accounts work in a very similar way.

Every account lives in a giant key-value store.

The key is a 32-byte public address.

The value is the account itself.

Instead of thinking about wallets and smart contracts as separate objects, think of everything as files stored in the same global filesystem.

The Five Fields Every Account Has

Every account on Solana contains the same structure:

Solana Account

Lamports

Lamports are the smallest unit of SOL.

Just like 1 dollar contains 100 cents:

1 SOL = 1,000,000,000 lamports.

This field stores the account's SOL balance.

Data

This is where an account stores information.

A wallet account might store little or no data.

A token account stores token balances.

A DeFi protocol might store liquidity pool information, positions, or user state.

The data field is simply a byte array that programs can interpret however they want.

Owner

This is one of the most important fields.

The owner is the program that has permission to modify the account's data.

Think of it like file ownership in Linux.

If a program doesn't own an account, it cannot arbitrarily change its contents.

Executable

This field indicates whether the account contains executable code.

If executable is true, the account is a program.

If executable is false, the account is simply storing data.

Rent Epoch

Historically this field was used for rent collection.

Today it is deprecated and typically set to a maximum value.

You will still see it when inspecting account data, but modern applications rarely need to interact with it directly.

Ownership Is Solana's Security Model

One rule explains most of Solana's security model:

Ownership Is Solana's

Only the owner program can modify an account's data or remove lamports from it.

Interestingly, anyone can send lamports to a writable account.

This means ownership is not about who can deposit funds.

Ownership determines who can modify state.

For Web2 developers, this feels similar to database permissions.

You may have read access to a table, but only specific services can modify certain records.

The Concept That Surprised Me Most

The biggest surprise for me was learning that programs do not store their own state.

In many systems we think of an application and its data as being tightly connected.

On Solana they are separated.

Solana State

A program account contains executable code.

Data accounts contain state.

The program reads and writes data from those accounts when processing instructions.

A useful analogy is a web application.

Imagine:

  • The program is your backend server.
  • Data accounts are your database tables.
  • Transactions are API requests.

The backend doesn't keep all data inside its source code.

It reads and writes information to a database.

Solana works in a very similar way.

Why Rent Exemption Exists

Since storing data on-chain consumes network resources, accounts must maintain a minimum balance.

This is known as rent exemption.

Solana Rent

The larger the account's data size, the more lamports it must hold.

For a basic account, the amount is relatively small, but larger accounts require more SOL.

This mechanism prevents the blockchain from being flooded with free, permanent storage.

A Real Example

Wallet Swap Result

When I explored my own DeFi swap transaction in Solana Explorer, I expected to see a simple token exchange.

Instead, I found dozens of accounts interacting together.

Swap in Explorer

Transaction: https://explorer.solana.com/tx/3DW1LgsjDg2cbgZnsPE4UkR4WqnZoZpwn5tufuRgKaAtV3FuujkCoHxQ4Lx3PfN6zRjL9tDoShJR8HsBR6DQ42rV

Some accounts held token balances.

Some belonged to liquidity pools.

Some were temporary accounts created during execution.

Others belonged to programs like Jupiter and the Token Program.

Understanding the account model suddenly made the transaction much easier to follow.

Everything was just accounts interacting under a set of ownership rules.

Final Thoughts

If you're coming from Web2, the Solana account model can initially feel unfamiliar.

But once you stop thinking in terms of wallets versus smart contracts and start thinking in terms of accounts, programs, and ownership, many parts of Solana begin to make sense.

Accounts are the foundation of everything on the network.

Tokens, NFTs, DeFi protocols, governance systems, and wallets all build on the same simple idea:

Everything is an account.