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

推荐订阅源

WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
C
Check Point Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
量子位
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
J
Java Code Geeks
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
P
Proofpoint News Feed
美团技术团队
H
Help Net Security
B
Blog
博客园_首页

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 Explorer Explained: How to Read Blockchain Data Li...
Samuel Akoji · 2026-05-17 · via DEV Community

What Is Solana Explorer?

If you've spent the last few weeks writing scripts to fetch account balances, decode transactions, and inspect on-chain programs via the CLI, opening Solana Explorer for the first time feels like switching from a terminal to a dashboard. Everything you've been reading in JSON is now laid out visually but understanding what you're looking at is still a developer skill.

This post walks you through Solana Explorer as a developer tool, not just a block explorer. By the end, you'll know what every section means and how it maps to the data you've already been working with in code.

Devnet vs Mainnet Switch First

The first thing to do when opening explorer.solana.com is check which network you're on. The network switcher is in the top-right corner. If you've been working through 100 Days of Solana, most of your activity has been on devnet so switch there first or you won't find your own wallets and transactions.

This is the visual equivalent of setting your RPC endpoint in code:

const connection = new Connection(clusterApiUrl('devnet'));

Enter fullscreen mode Exit fullscreen mode

Mainnet is the live network with real money. Devnet is the sandbox. Explorer shows both just make sure you're looking at the right one.

Anatomy of a Transaction in Explorer

Click any recent transaction and you'll see several sections. Here's how they map to what you know from code:

Signature This is the unique transaction ID, equivalent to the string you get back from sendTransaction(). It's how you look up any transaction on-chain.

Result Success or failure. On-chain, a failed transaction still gets recorded and still costs a fee. Explorer shows you the error message if it failed, which is invaluable for debugging.

Timestamp When the transaction was finalized. Solana's block time is roughly 400ms, so this is nearly real-time.

Fee Shown in SOL. Transaction fees on Solana are tiny usually around 0.000005 SOL (5000 lamports). You've worked with lamports in code; Explorer converts them to SOL for readability.

Account Inputs This is the list of accounts involved in the transaction. Every Solana transaction must declare upfront which accounts it will read or write. You'll see which accounts are marked as writable and which are signers.

Instruction Data The raw instruction sent to a program. For simple SOL transfers this is minimal, but for program interactions it contains the encoded instruction arguments.

Log Messages This is the most useful section for developers. Every msg!() call from a Solana program shows up here. When your program panics or hits an error, the log is where you'll find out why.

Finding Your Own Wallet

Paste your devnet wallet address into the search bar. You'll see:

  • SOL Balance in SOL, with the lamport equivalent
  • Token Accounts any SPL tokens you hold
  • Transaction History every transaction this wallet has signed, in chronological order

Compare this to what you'd get from the CLI:

solana balance <YOUR_WALLET_ADDRESS> --url devnet
solana transaction-history <YOUR_WALLET_ADDRESS> --url devnet

Enter fullscreen mode Exit fullscreen mode

Explorer gives you the same data, just navigable. The CLI gives you the same data, just scriptable. Both are reading from the same on-chain state.

Exploring a Native Program

Search for 11111111111111111111111111111111 this is the System Program. Every SOL transfer goes through it. In Explorer you'll see it marked as a native program with the executable flag set to true and a data field that's essentially empty (native programs live in the validator, not in account data).

This is a concept you'll explore deeper in Arc 4: on Solana, programs are just accounts with executable: true. The System Program is the most fundamental one it handles account creation and SOL transfers.

What Explorer Can't Tell You

Explorer is read-only and retrospective. It shows you what happened, not why. For debugging a failing program, you still need your logs and local testing. For building, you still need the SDK. Explorer is the lens you use to verify not the tool you use to build.

Takeaway

Every CLI command you've run in the last 26 days has been reading from the same data that Explorer displays. The difference is interface, not information. Use Explorer to verify your work, explore unfamiliar programs, and build intuition for what on-chain activity looks like at scale.