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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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
5 Things to Find on Solana Explorer That Will Level Up Yo...
Samuel Akoji · 2026-05-17 · via DEV Community

Why Exploration Beats Documentation

You can read about Solana's architecture for hours. Or you can spend 20 minutes on Solana Explorer and see it. This tutorial gives you five specific things to find on Explorer that will make abstract concepts concrete each one tied to something you've already learned in 100 Days of Solana.

Open explorer.solana.com and switch to devnet before starting.

1. Find Your Oldest Devnet Transaction

Search your wallet address in Explorer. Scroll to the bottom of your transaction history. Your oldest transaction is probably the airdrop from Day 1 — when you ran:

solana airdrop 2 <YOUR_ADDRESS> --url devnet

Enter fullscreen mode Exit fullscreen mode

Click that transaction. Notice:

  • The fee payer is your wallet
  • The program invoked is the System Program (11111111111111111111111111111111)
  • The instruction type is Transfer

This is the full on-chain record of the moment you got your first devnet SOL. It's permanent. Even after the challenge ends, this transaction will still be there.

What to notice: The fee for an airdrop is 0 the network pays for it. For the transfers you sent, you'll see a small fee deducted from your account.

2. Find the System Program and Read Its Account

Search: 11111111111111111111111111111111

This is the System Program the most fundamental program on Solana. It handles creating new accounts and transferring SOL. Look at its account details:

  • Executable: true it's a program, not a data account
  • Owner: Native Loader native programs are a special case
  • Data: essentially empty in the account, because native programs live in the validator binary
  • Balance: 1 SOL the minimum to keep it rent-exempt

Every SOL transfer you've made in the last 26 days went through this account. It has processed billions of instructions since mainnet launch.

What to notice: The executable flag is the only thing distinguishing a program account from a data account. That distinction is fundamental to Solana's account model.

3. Find a Token Account

On mainnet, search for any popular token like USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v

You'll see a token mint account, the on-chain record that defines USDC: total supply, decimals, and the mint authority. This is what SPL token accounts point to when they say "I hold USDC."

Switch back to devnet and look at your own wallet if you've interacted with any tokens, you'll see associated token accounts listed. Each one is a separate account that says "this wallet holds X amount of token Y."

What to notice: Your wallet doesn't directly hold tokens. It owns token accounts that hold tokens. This is why you sometimes pay a small fee to receive a new token creating the token account costs rent.

4. Watch Live Mainnet Transactions

Switch to mainnet and go to the Explorer homepage. You'll see transactions streaming in at roughly 2-3 per second. Watch for a minute.

Notice the variety: some are simple SOL transfers, some are complex DeFi interactions with 10+ accounts and multiple program invocations. The transaction volume and complexity gives you a real sense of what's actually happening on-chain day to day.

Click a random complex transaction and trace through the accounts list you'll start recognizing patterns: DEX programs, token programs, associated token account programs.

What to notice: Solana's throughput is real. This isn't a demo — it's the actual network handling thousands of transactions per second in production.

5. Find a Failed Transaction

In any active wallet's history, look for a transaction with a red "Error" badge. Click it.

You'll see the error message in the log section. Common errors you'll encounter:

  • InsufficientFundsForRent the account doesn't have enough SOL to stay rent-exempt
  • InvalidAccountData the program received an account it didn't expect
  • Custom program error: 0x1 a program-specific error code

What to notice: Failed transactions still get recorded and still cost a fee. The fee is paid for the computational work the validators did to attempt the transaction, even if it ultimately failed. This is an important detail for building resilient Solana apps.

Putting It Together

Each of these five explorations maps to a concept from the first 26 days:

  1. Your airdrop transaction → Day 1 (keypairs and devnet SOL)
  2. The System Program → Day 15-17 (transactions and transfers)
  3. Token accounts → the account model you're learning in Arc 4
  4. Live mainnet → the real network you're building toward
  5. Failed transactions → error handling from Days 18-19

Explorer isn't just a block browser. It's a learning tool. The entire history of Solana is there to read.