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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

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: A Web2 Developer’s Guide to On-Ch...
Hala Kabir · 2026-05-17 · via DEV Community

If you are a Web2 developer dipping your toes into Web3, the word "account" probably conjures up images of user profiles, usernames, and passwords stored securely inside a database table.

When you move over to blockchain networks like Ethereum, an account is either a wallet (Externally Owned Account) or a smart contract.

But then you get to Solana, and suddenly everyone is screaming, "Everything is an account!" Your wallet? An account. A smart contract? An account. A random piece of data or an NFT metadata file? You guessed it—an account. If this sounds incredibly confusing, don't worry. Today, we are pulling back the curtain on Solana’s account model using structural concepts you already know from traditional computing.

The Ultimate Analogy:

Think of Solana as a Linux Filesystem
If you want to understand Solana without getting bogged down in crypto jargon, think of the entire Solana blockchain as a massive, decentralized Linux Filesystem, and the core network software (the System Program) as the operating system kernel.

In this model:

Every account is simply a file.

The public key (address) of the account is the file path (e.g., /user/documents/wallet).

The data inside the account is the contents of the file.

The ** metadata ** dictates the file permissions and details.

Just like a filesystem handles configuration files, image files, and executable script files using the exact same underlying disk structure, Solana stores wallets, tokens, and code inside the exact same account format.

🕵️‍♂️ The 5 Hidden Fields:

In Every Solana FileWhenever you use the Solana Command Line Interface (CLI) to look up an address under the hood, the network returns the exact same 5-field **metadata layout for every **single object on the ledger. Let's look at what a raw account looks like:

JSON{
  "public_key": "Config1111111111111111111111111111111111111",
  "balance": "0.00114144 SOL",
  "owner": "BPFLoaderUpgradeable11111111111111111111111",
  "executable": true,
  "data_length": 1024,
  "rent_epoch": 18446744073709551615    
}

Enter fullscreen mode Exit fullscreen mode

Every single account shares these exact five fields:

Lamports (Balance): The amount of fractional SOL this account holds. (Note: $1\text{ SOL} = 1,000,000,000\text{ lamports}$).
Data Length & Data Array: A raw byte array allocated to store custom state or compiled program bytes.
Owner: The public key of the specific smart contract program authorized to write data to this file.
Executable: A simple boolean flag (true or false). If it is true, it means this account contains compiled code that can run. If it is false, it's just a data folder or a wallet.
Rent Epoch: A legacy field now permanently set to a maximum placeholder value for all modern rent-exempt accounts.

The Mind-Bending Twist:

Programs Are Stateless!
Here is the concept that completely shocks Web2 engineers when they first build on Solana: Smart contracts (programs) cannot store data inside themselves.

In Ethereum or traditional backend architecture, a class or smart contract often maintains its own state variables internally. If you have a counter program, the counter variable lives right inside the code.

Not on Solana. On Solana, programs are completely stateless.

Think of a Solana smart contract like an isolated Nginx web server or a Docker container. The container holds the code to process requests, but it cannot save files locally. If it needs to read or update a user's data, it must reach out to an entirely separate, external file (a data account) passed into it during the transaction.

Program Account:

** Has Executable:** true. It only holds immutable, executable logic.

Data Account:

** Has Executable:** false. It only holds raw data bytes and balances.

The Security Model:

strict Ownership Rules
How does Solana keep everything secure if programs are constantly modifying external data files? The network enforces a beautifully simple, ironclad security rule:

Only the program designated as the "Owner" of an account can modify its internal data or debit its Lamport balance.

Think of it like file permissions. Anyone can look at a public file, and anyone can drop extra money (credit lamports) into a wallet file. But only the specific owner program has the cryptographic permission to write changes to that file's data array or spend its money. If a malicious user tries to bypass this, the operating system kernel rejects the transaction instantly.

Paying Your Digital Property Tax:

Rent Exemption
Space on a high-speed blockchain ledger is premium real estate. Because validators have to keep active accounts loaded in RAM **for **maximum speed, you cannot store data on-chain for free.

To keep the network clean, Solana uses a mechanism called Rent Exemption.

When you create a new account file, you must deposit a small minimum amount of SOL proportional to the size of the data bytes you want to store. Think of it like a security deposit for apartment rental. As long as your account holds that minimum balance, it stays "rent-exempt" and will live on the blockchain forever without ever losing funds. For a standard layout, this is usually just a tiny fraction of a single SOL token!

Summary

Transitioning from Web2 to Solana becomes incredibly intuitive once you realize that the blockchain isn't a magical black box—it's just a globally shared, high-performance operating system. By separating stateless code execution from organized, heavily-permissioned data files, Solana achieves the blazing-fast transaction speeds it is famous for.