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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
L
LangChain Blog
C
Check Point Blog
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
美团技术团队
博客园 - 司徒正美
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog
G
Google Developers Blog
The Cloudflare Blog
P
Proofpoint News Feed

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
A week of Learning Solana #100DaysOfSolana
Sanjaya Bhat · 2026-04-28 · via DEV Community

I spent 7 days learning Solana wallets — here’s what actually clicked

I’ve mostly worked in Web2 stuff, so when I started Solana, I expected something like:

  • create account
  • set password
  • get token-based auth or something

But that’s not what happens at all.

There is no “account creation” step.

You just generate a keypair and… that’s your identity.


Day 1 — Identity is just a keypair

First thing I did was generate a wallet in code:

`
import { generateKeyPairSigner } from "@solana/kit";

const wallet = await generateKeyPairSigner();
console.log(wallet.address);
`

That’s it.

No email. No signup. No backend.

Just a public key and a private key.

At this point it honestly felt like “okay but where is the account actually stored?”

Answer: nowhere.

You are the account.


Day 2 — Oh, wallets are just files

Next step was making it persistent.

So instead of generating a new wallet every time, I saved it into a JSON file.

That’s when it started feeling a bit… raw.

Because suddenly:

  • my “wallet” = a file on my machine
  • my “identity” = bytes in that file

If someone has that file, they are you on-chain.

No recovery. No reset.

Very different from Web2 where you can just email support.


Day 3 — SOL is not really what the system uses

Then I hit something small but important:

SOL is just a human label.

Under the hood it’s all lamports:

1 SOL = 1,000,000,000 lamports

Enter fullscreen mode Exit fullscreen mode

Everything in code uses lamports, not SOL.

So if you mess up and send 1 instead of 1e9, you didn’t send 1 SOL… you sent basically nothing.

This is one of those “good to know early or suffer later” things.


Day 4 — Browser wallets feel like the “real product”

Then I tried Phantom.

This felt closer to what most people think “wallets” are.

Setup looked like:

  • create seed phrase
  • set password
  • install extension
  • connect to app

But the important part:

My app never sees my private key.

Instead it just asks:

“can you sign this?”

And Phantom handles the rest.

That was the first time Solana started feeling like a real ecosystem, not just scripts.

Day 5 — There isn’t one wallet type

This day was more comparison than coding.

I tried CLI, browser, and mobile wallets and realized something simple:

They are all the same thing underneath.

Just stored differently:

  • CLI → file on disk (fast, insecure)
  • Browser → encrypted extension (balanced)
  • Mobile → secure storage + biometrics (more protected)

So it’s not really “which wallet is best”

It’s more:

what are you trying to do?

scripts, dApps, or holding funds


Day 6 — Identity finally clicked

This was the big mental shift.

In Web2:

  • identity = database record
  • platform owns access

In Solana:

  • identity = ability to sign
  • no one can “reset” it for you

If you have the private key → you are the account
If you lose it → it’s gone

That’s it.

No middle layer.

No support tickets.

Kind of scary, but also… very clean.


Day 7 — Sharing it made it clearer

The last step wasn’t technical.

It was just writing and sharing what I learned.

And honestly, that’s where things started making sense properly.

Because when you try to explain it simply, you realize:

  • wallets are just key storage
  • identity is just cryptographic proof
  • apps don’t “log you in” — they just verify signatures

🧠 Final takeaway

If I had to reduce everything I learned:

A Solana wallet is just a keypair. Everything else is UX around signing.

That’s it.

No accounts. No passwords. No central identity.

Just keys.

And once that clicks, everything else (tokens, NFTs, DeFi) becomes way easier to understand.


If you’re coming from Web2, this is probably the hardest mindset shift:

You don’t “log in” to Solana.

You just prove you are already you.


_This post is part of my #100DaysOfSolana series. Follow along as I go from zero to building on Solana, one day at a time.
_