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

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
B
Blog RSS Feed
D
DataBreaches.Net
L
LangChain Blog
月光博客
月光博客
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
美团技术团队
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
小众软件
小众软件
罗磊的独立博客
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta

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
An easy approach to "Identity" on Solana
d3bugTime · 2026-04-28 · via DEV Community

Hello dear readers, I'm going to explain a few basic concepts that will give meaning to this whole article, seeing it from my perspective as a Web Developer who is just taking his/her first steps in the world of Web3, Blockchain, Solana, etc.

Web3 is the next "phase" of the internet we know and use daily, adding the concept of "ownership." Think of these phases as similar to the Marvel movies: they started by introducing basic elements (characters and stories), which then become more complex and interconnected over time.

And this change isn't just happening to the internet, but also to money and how we deal with it. In the previous phase, money was managed, regulated, and controlled by central entities such as banks or private institutions. Now, in this new phase, the goal is to eliminate central entities (which can be manipulated, corrupted, or compromised) and instead create "decentralized" entities (thousands of connected computers) where anyone can have secure access and use their cash more conveniently. The very idea of ownership (exclusive personal possession) is what drives the technology called Blockchain.

On this "Web3 Ecosystem", or New Money Universe (if you prefer), there are different elements such as:

Blockchain -> general technology
Wallet -> personal storage
Cryptocurrencies -> primarily money

Solana is one of these cryptocurrencies, which allows us to do many more things. But for now, we'll just focus on the basics.

Identity refers to how we access our wallet, and therefore our cryptocurrencies. The personal master key is the “key pair”. This is a term any developer should be familiar with when working daily with SSH keys on GitHub. It's a combination of public and private keys, the private is the one you use and the public the one which is stored on the server. But in Web3 there is no single server, but a network of participants. This is intended to be used in the process of development (for developers work), where is known as a "CLI Wallet", when you can code and test. Internally it's used a 32-byte Ed25519 public key encoded in Base58 to avoid ambiguity.

For regular users, the keys are generated by a browser extension called "Browser Wallet" or a mobile extension called "Mobile Wallet," and they don't need to worry about their generation or functionality; once installed everything is handled behind the scenes. Accounts are created with a personal password that we choose, and within that account, we are given a group of words (12 or 24 for security) to recover or link our account to different devices (this is the most important part; without it, all access to our funds is lost).

The reason for the security and trust is that everything is encrypted and runs across the network (the idea of decentralization), so there's no single point of vulnerability. And if we add fingerprint and facial recognition to mobile devices, we add another layer of protection.

That's the future of money, which is getting closer and closer to us even if we don’t notice.