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

推荐订阅源

WordPress大学
WordPress大学
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
GbyAI
GbyAI
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
G
Google Developers Blog
博客园_首页
有赞技术团队
有赞技术团队
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题

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
I Thought Solana Identity Would Be Complicated… It’s Actu...
Sanjaya Bhat · 2026-04-28 · via DEV Community

Day 5 of Learning Solana: I Finally Understand Identity (It’s Just SSH Keys 😅)

I have been learning Solana for the past few days, and I’ll be honest:

“Identity on blockchain” sounded like one of those things I would pretend to understand… but actually didn’t.

I expected:

  • complicated concepts
  • heavy cryptography
  • lots of “just trust me” explanations

But after a week, it finally clicked.

And now I feel like I was overthinking it the whole time.


What I Was Expecting vs Reality

Before this, my mental model was:

Blockchain identity = some new complicated system I need to memorize

Actual reality:

It’s basically SSH keys.

That’s it.

Once I saw it that way, everything started making sense.


Quick Reality Check: How Web2 Identity Works

As a Web2 dev, this is our default:

  • user signs up
  • we store username/email + password
  • we handle auth
  • we reset passwords
  • we manage sessions

We have all built this 100 times.

And we don’t question it anymore.

But also… we don’t really own anything here.

If your app uses my database:

  • I can lock you out
  • I can delete your account
  • I control access

“Your account” is kind of an illusion.


Solana: No Accounts, Just Keys

Here’s the shift.

On Solana, there are:

  • no usernames
  • no passwords
  • no central database

Your identity is just:

  • a public key (your address)
  • a private key (your proof)

You generate this yourself.

No signup.
No email.
No “create account” button.

That part alone felt weird at first.


The SSH Moment (Where It Finally Clicked)

The turning point for me was thinking about SSH.

With SSH:

  • you generate a keypair
  • you give the server your public key
  • you prove who you are using your private key

Now replace:

  • “server” → with the entire Solana network

And suddenly:

Oh.

This is the same idea.

Just bigger.


The Ugly Truth: Your Identity Looks Like This

Instead of a nice username like username_dev, you get this:

14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5

Very user-friendly. Totally memorable.😅

It’s a public key (Base58 encoded, which just avoids confusing characters).

Important part:

  • you didn’t pick it
  • no one gave it to you
  • it’s not stored in some company DB

You just have it.


The Part That Actually Changed My Thinking

This is where things got real for me.

In Web2:

I “own” my account because a company says I do.

In Solana:

If I have the private key, I own it. Period.

No support team.
No admin panel.
No “forgot password.”

Also no safety net.

If you lose your private key, that’s it.

Game over.

That sounds scary (and it kind of is), but also:

No one can randomly ban you or lock you out.

That’s a big shift.


Why This Is More Powerful Than It Looks

At first I thought:

“Cool, so it’s just login but more annoying.”

But it’s not just login.

This identity is used for everything:

  • holding tokens
  • interacting with programs
  • signing transactions
  • voting in governance
  • basically proving “this action is mine”

And the crazy part:

It works across every app.

No separate accounts.
No repeated signups.

It’s like if your SSH key worked on every server on the internet by default.


The Mental Model I’m Keeping

This is what I’ve settled on:

  • Web2 → accounts controlled by companies
  • Solana → keys controlled by you

Or even shorter:

Web2 = “they manage you”

Web3 = “you manage your keys”

That one line helped everything stick.


Final Thought (From Someone Still Learning)

I’m only a few days into this, but this was one of those moments where things suddenly felt simple.

Not easy.

But simple.

The hardest part wasn’t the tech.

It was letting go of the idea that: someone else is managing identity for me

On Solana, that responsibility is yours.

And that’s kind of the whole point.


100DaysOfSolana