DEV Community

Samuel Akoji
Samuel Akoji

Posted on

5 Things to Find on Solana Explorer That Will Level Up Your On-Chain Intuition

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.

Top comments (0)