<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Owolabi Olamilekan</title>
    <description>The latest articles on DEV Community by Owolabi Olamilekan (@owolabi_olamilekan_6abf1f).</description>
    <link>https://dev.to/owolabi_olamilekan_6abf1f</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3960508%2Fa5316e8f-9191-440b-99b0-678cd1f4715d.png</url>
      <title>DEV Community: Owolabi Olamilekan</title>
      <link>https://dev.to/owolabi_olamilekan_6abf1f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/owolabi_olamilekan_6abf1f"/>
    <language>en</language>
    <item>
      <title>Your Solana Address is Not a Username — It's Your Identity</title>
      <dc:creator>Owolabi Olamilekan</dc:creator>
      <pubDate>Sun, 28 Jun 2026 21:26:01 +0000</pubDate>
      <link>https://dev.to/owolabi_olamilekan_6abf1f/your-solana-address-is-not-a-username-its-your-identity-480g</link>
      <guid>https://dev.to/owolabi_olamilekan_6abf1f/your-solana-address-is-not-a-username-its-your-identity-480g</guid>
      <description>&lt;p&gt;I'll be honest, when I first heard the word "keypair," &lt;br&gt;
I had no idea what it meant. I just knew it had something &lt;br&gt;
to do with blockchain and that I probably needed one.&lt;/p&gt;

&lt;p&gt;Five days into my 100 Days of Solana challenge, I finally &lt;br&gt;
get it. And if you're coming from Web2 like I am, let me &lt;br&gt;
break it down in a way that actually makes sense.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem With How We Think About Identity
&lt;/h2&gt;

&lt;p&gt;Right now, your online identity is basically rented. &lt;br&gt;
GitHub gave you a username. Google gave you an email. &lt;br&gt;
Your bank gave you an account number. You exist in their &lt;br&gt;
systems because they allow it — and they can take it &lt;br&gt;
away just as easily.&lt;/p&gt;

&lt;p&gt;Get banned? Locked out. Platform shuts down? Gone. &lt;br&gt;
Forgot your password? Better hope customer support &lt;br&gt;
feels like helping today.&lt;/p&gt;

&lt;p&gt;Solana flips this completely.&lt;/p&gt;

&lt;h2&gt;
  
  
  You Generate Your Own Identity
&lt;/h2&gt;

&lt;p&gt;When you run &lt;code&gt;solana-keygen new&lt;/code&gt; on your terminal or &lt;br&gt;
set up Phantom for the first time, you're not signing &lt;br&gt;
up for anything. You're generating something — a keypair.&lt;/p&gt;

&lt;p&gt;A keypair is two things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;public key&lt;/strong&gt; — this is your address. Share it 
freely. It's how people send you SOL or how apps 
recognize you.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;private key&lt;/strong&gt; — this is your proof that you are 
you. Sign transactions with it, and the network knows 
it was really you. Lose it, and there's no recovery 
email, no support ticket, no way back in. Ever.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sounds scary, but once it clicks, it's actually &lt;br&gt;
empowering.&lt;/p&gt;

&lt;h2&gt;
  
  
  If You've Used SSH Keys, You Already Get This
&lt;/h2&gt;

&lt;p&gt;Seriously. If you've ever connected to a server over &lt;br&gt;
SSH, you've done basically the same thing. You generated &lt;br&gt;
a key pair, put the public key on the server, and proved &lt;br&gt;
your identity by holding the private key locally.&lt;/p&gt;

&lt;p&gt;Solana works the same way — except instead of one &lt;br&gt;
server, the "server" is an entire blockchain network &lt;br&gt;
with thousands of nodes. And your keypair works across &lt;br&gt;
all of it, without asking anyone's permission.&lt;/p&gt;

&lt;h2&gt;
  
  
  One Address, Everything
&lt;/h2&gt;

&lt;p&gt;Here's what blew my mind a little. In Web2, I have &lt;br&gt;
different accounts everywhere — Twitter, GitHub, my &lt;br&gt;
bank, my email. None of them know each other exists &lt;br&gt;
unless someone builds an integration.&lt;/p&gt;

&lt;p&gt;On Solana, that one address you generated? It's &lt;br&gt;
everything. The same address holds your SOL, your NFTs, &lt;br&gt;
your governance votes, your DeFi positions. Your entire &lt;br&gt;
on-chain life tied to one keypair that you own.&lt;/p&gt;

&lt;p&gt;No platform controls it. No company can freeze it. &lt;br&gt;
It just exists on the network, and it's yours.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three Wallets I Actually Used
&lt;/h2&gt;

&lt;p&gt;Over the past few days I got hands-on with three &lt;br&gt;
different wallet types, and they all protect your &lt;br&gt;
private key differently:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CLI Wallet&lt;/strong&gt; — your key lives as a plain JSON file &lt;br&gt;
sitting on your laptop. Dead simple, great for testing &lt;br&gt;
and running scripts on devnet. But if someone gets &lt;br&gt;
access to your machine, they get access to your wallet. &lt;br&gt;
Not something you'd use for real money.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Browser Wallet (Phantom)&lt;/strong&gt; — the key is encrypted &lt;br&gt;
with your password and lives in your browser. Every &lt;br&gt;
time a site wants to do something with your wallet, a &lt;br&gt;
popup appears asking you to approve it. That extra &lt;br&gt;
confirmation step is doing real work — you see exactly &lt;br&gt;
what you're signing before it happens.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mobile Wallet&lt;/strong&gt; — same idea as the browser wallet &lt;br&gt;
but on your phone, with the added bonus of biometric &lt;br&gt;
auth. Some phones even store the key in dedicated &lt;br&gt;
hardware that makes it nearly impossible to extract. &lt;br&gt;
This is probably what most regular users will interact &lt;br&gt;
with.&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Actually Means
&lt;/h2&gt;

&lt;p&gt;In Web2, you "own" your account because a company says &lt;br&gt;
so in their terms of service. In Web3, you own your &lt;br&gt;
account because math says so. No terms of service &lt;br&gt;
required.&lt;/p&gt;

&lt;p&gt;That's not just a technical upgrade — it's a completely &lt;br&gt;
different way of thinking about who you are online.&lt;/p&gt;

&lt;p&gt;I'm only on Day 6 of 100, and this is already the &lt;br&gt;
concept that's changed how I think about the internet. &lt;br&gt;
If you're curious about Solana, start here. Generate &lt;br&gt;
a keypair. Fund it on devnet. Poke around.&lt;/p&gt;

&lt;p&gt;Your address is out there waiting for you.&lt;/p&gt;

&lt;h1&gt;
  
  
  100DaysOfSolana
&lt;/h1&gt;

</description>
      <category>beginners</category>
      <category>blockchain</category>
      <category>learning</category>
      <category>web3</category>
    </item>
  </channel>
</rss>
