<?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: Pujan Bade</title>
    <description>The latest articles on DEV Community by Pujan Bade (@pujan77).</description>
    <link>https://dev.to/pujan77</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2F99mvlsfu5tfj9m7ku25d.png</url>
      <title>DEV Community: Pujan Bade</title>
      <link>https://dev.to/pujan77</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pujan77"/>
    <language>en</language>
    <item>
      <title>Week 1: 100 Days of Solana</title>
      <dc:creator>Pujan Bade</dc:creator>
      <pubDate>Mon, 18 May 2026 09:49:51 +0000</pubDate>
      <link>https://dev.to/pujan77/week-1-100-days-of-solana-5daj</link>
      <guid>https://dev.to/pujan77/week-1-100-days-of-solana-5daj</guid>
      <description>&lt;h1&gt;
  
  
  Identity on Solana Finally Clicked for Me When I Compared It to SSH Keys
&lt;/h1&gt;

&lt;p&gt;Coming from a Web2 background, I always thought “blockchain identity” sounded way more complicated than it actually is.&lt;/p&gt;

&lt;p&gt;People throw around terms like wallets, addresses, private keys, and self-custody, and at first it honestly feels like learning an entirely new internet.&lt;/p&gt;

&lt;p&gt;But after spending the past few days working with Solana wallets and keypairs, something finally clicked for me:&lt;/p&gt;

&lt;p&gt;A Solana wallet is basically your internet identity backed by cryptography instead of a company database.&lt;/p&gt;

&lt;p&gt;And surprisingly, the best analogy I found was SSH keys.&lt;/p&gt;

&lt;h2&gt;
  
  
  We Already Use This Idea in Web2
&lt;/h2&gt;

&lt;p&gt;If you have ever connected to a remote server using SSH, you already understand the core concept behind Solana identity.&lt;/p&gt;

&lt;p&gt;You generate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a public key&lt;/li&gt;
&lt;li&gt;a private key&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You place the public key on the server, and the server trusts you because only you have the matching private key.&lt;/p&gt;

&lt;p&gt;No password needs to be repeatedly stored or sent over the network.&lt;/p&gt;

&lt;p&gt;That is actually very close to how identity works on Solana.&lt;/p&gt;

&lt;p&gt;When you create a Solana wallet, you generate a cryptographic keypair:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the public key becomes your wallet address&lt;/li&gt;
&lt;li&gt;the private key proves ownership&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Your wallet address is safe to share publicly. It is basically your on-chain identity.&lt;/p&gt;

&lt;p&gt;Something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At first glance, it looks random and unreadable, but there is actually a reason for the format.&lt;/p&gt;

&lt;p&gt;Solana uses Base58 encoding, which intentionally removes visually confusing characters like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;0 and O&lt;/li&gt;
&lt;li&gt;I and l&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Small detail, but honestly pretty smart.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Weirdest Part: Nobody Creates Your Account
&lt;/h2&gt;

&lt;p&gt;This was probably the biggest mindset shift for me.&lt;/p&gt;

&lt;p&gt;In Web2, every account exists because some company stores it in a database.&lt;/p&gt;

&lt;p&gt;Your Gmail account exists because Google says it exists.&lt;/p&gt;

&lt;p&gt;Your GitHub username exists because GitHub stores it.&lt;/p&gt;

&lt;p&gt;Your bank account exists because a bank manages it.&lt;/p&gt;

&lt;p&gt;But on Solana, there is no company creating your identity.&lt;/p&gt;

&lt;p&gt;No signup form.&lt;br&gt;
No email verification.&lt;br&gt;
No “forgot password.”&lt;/p&gt;

&lt;p&gt;Your identity exists because you generated a keypair.&lt;/p&gt;

&lt;p&gt;That is it.&lt;/p&gt;

&lt;p&gt;The network simply recognizes cryptographic ownership.&lt;/p&gt;

&lt;p&gt;And only whoever controls the private key can approve actions for that wallet.&lt;/p&gt;
&lt;h2&gt;
  
  
  Ownership Feels Very Different
&lt;/h2&gt;

&lt;p&gt;In Web2, we say we “own” our accounts, but realistically platforms still control access.&lt;/p&gt;

&lt;p&gt;Accounts can be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;suspended&lt;/li&gt;
&lt;li&gt;locked&lt;/li&gt;
&lt;li&gt;recovered&lt;/li&gt;
&lt;li&gt;deleted&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On Solana, ownership works differently.&lt;/p&gt;

&lt;p&gt;If you hold the private key, you control the wallet.&lt;/p&gt;

&lt;p&gt;Nobody can reset it for you.&lt;br&gt;
Nobody can recover it for you.&lt;br&gt;
Nobody can override your signature.&lt;/p&gt;

&lt;p&gt;That freedom is powerful, but it also comes with responsibility.&lt;/p&gt;

&lt;p&gt;Losing a password in Web2 is annoying.&lt;/p&gt;

&lt;p&gt;Losing a private key in Web3 can mean losing access permanently.&lt;/p&gt;

&lt;p&gt;I think that is why people emphasize wallet security so much in crypto. Your wallet is not just an app — it is literally your identity and ownership layer.&lt;/p&gt;
&lt;h2&gt;
  
  
  One Identity Across Everything
&lt;/h2&gt;

&lt;p&gt;Another thing I found really interesting is how portable blockchain identity becomes.&lt;/p&gt;

&lt;p&gt;In Web2, every app wants its own login:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;username&lt;/li&gt;
&lt;li&gt;password&lt;/li&gt;
&lt;li&gt;Google OAuth&lt;/li&gt;
&lt;li&gt;GitHub OAuth&lt;/li&gt;
&lt;li&gt;email verification&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On Solana, the same wallet can interact across completely different applications.&lt;/p&gt;

&lt;p&gt;Once you connect your wallet, apps can recognize:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what tokens you own&lt;/li&gt;
&lt;li&gt;NFTs you hold&lt;/li&gt;
&lt;li&gt;governance votes&lt;/li&gt;
&lt;li&gt;transaction history&lt;/li&gt;
&lt;li&gt;on-chain activity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without creating another account.&lt;/p&gt;

&lt;p&gt;That part honestly feels futuristic compared to the fragmented identity systems we use today.&lt;/p&gt;
&lt;h2&gt;
  
  
  Identity Becomes Infrastructure
&lt;/h2&gt;

&lt;p&gt;The more I learn about Solana, the more I realize wallets are not just for storing crypto.&lt;/p&gt;

&lt;p&gt;They are the foundation for interacting with the network itself.&lt;/p&gt;

&lt;p&gt;Your wallet becomes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;your login&lt;/li&gt;
&lt;li&gt;your signature&lt;/li&gt;
&lt;li&gt;your ownership proof&lt;/li&gt;
&lt;li&gt;your reputation&lt;/li&gt;
&lt;li&gt;your access layer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And unlike traditional platforms, it works across the entire ecosystem instead of being trapped inside one company’s database.&lt;/p&gt;

&lt;p&gt;That was the moment blockchain identity finally started making sense to me.&lt;/p&gt;

&lt;p&gt;Not as “magic internet crypto stuff,” but as a completely different model for proving ownership and trust online.&lt;/p&gt;

&lt;p&gt;MLH Challenge: # Identity on Solana Finally Clicked for Me When I Compared It to SSH Keys&lt;/p&gt;

&lt;p&gt;Coming from a Web2 background, I always thought “blockchain identity” sounded way more complicated than it actually is.&lt;/p&gt;

&lt;p&gt;People throw around terms like wallets, addresses, private keys, and self-custody, and at first it honestly feels like learning an entirely new internet.&lt;/p&gt;

&lt;p&gt;But after spending the past few days working with Solana wallets and keypairs, something finally clicked for me:&lt;/p&gt;

&lt;p&gt;A Solana wallet is basically your internet identity backed by cryptography instead of a company database.&lt;/p&gt;

&lt;p&gt;And surprisingly, the best analogy I found was SSH keys.&lt;/p&gt;
&lt;h2&gt;
  
  
  We Already Use This Idea in Web2
&lt;/h2&gt;

&lt;p&gt;If you have ever connected to a remote server using SSH, you already understand the core concept behind Solana identity.&lt;/p&gt;

&lt;p&gt;You generate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a public key&lt;/li&gt;
&lt;li&gt;a private key&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You place the public key on the server, and the server trusts you because only you have the matching private key.&lt;/p&gt;

&lt;p&gt;No password needs to be repeatedly stored or sent over the network.&lt;/p&gt;

&lt;p&gt;That is actually very close to how identity works on Solana.&lt;/p&gt;

&lt;p&gt;When you create a Solana wallet, you generate a cryptographic keypair:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the public key becomes your wallet address&lt;/li&gt;
&lt;li&gt;the private key proves ownership&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Your wallet address is safe to share publicly. It is basically your on-chain identity.&lt;/p&gt;

&lt;p&gt;Something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;At first glance, it looks random and unreadable, but there is actually a reason for the format.&lt;/p&gt;

&lt;p&gt;Solana uses Base58 encoding, which intentionally removes visually confusing characters like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;0 and O&lt;/li&gt;
&lt;li&gt;I and l&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Small detail, but honestly pretty smart.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Weirdest Part: Nobody Creates Your Account
&lt;/h2&gt;

&lt;p&gt;This was probably the biggest mindset shift for me.&lt;/p&gt;

&lt;p&gt;In Web2, every account exists because some company stores it in a database.&lt;/p&gt;

&lt;p&gt;Your Gmail account exists because Google says it exists.&lt;/p&gt;

&lt;p&gt;Your GitHub username exists because GitHub stores it.&lt;/p&gt;

&lt;p&gt;Your bank account exists because a bank manages it.&lt;/p&gt;

&lt;p&gt;But on Solana, there is no company creating your identity.&lt;/p&gt;

&lt;p&gt;No signup form.&lt;br&gt;
No email verification.&lt;br&gt;
No “forgot password.”&lt;/p&gt;

&lt;p&gt;Your identity exists because you generated a keypair.&lt;/p&gt;

&lt;p&gt;That is it.&lt;/p&gt;

&lt;p&gt;The network simply recognizes cryptographic ownership.&lt;/p&gt;

&lt;p&gt;And only whoever controls the private key can approve actions for that wallet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Ownership Feels Very Different
&lt;/h2&gt;

&lt;p&gt;In Web2, we say we “own” our accounts, but realistically platforms still control access.&lt;/p&gt;

&lt;p&gt;Accounts can be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;suspended&lt;/li&gt;
&lt;li&gt;locked&lt;/li&gt;
&lt;li&gt;recovered&lt;/li&gt;
&lt;li&gt;deleted&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On Solana, ownership works differently.&lt;/p&gt;

&lt;p&gt;If you hold the private key, you control the wallet.&lt;/p&gt;

&lt;p&gt;Nobody can reset it for you.&lt;br&gt;
Nobody can recover it for you.&lt;br&gt;
Nobody can override your signature.&lt;/p&gt;

&lt;p&gt;That freedom is powerful, but it also comes with responsibility.&lt;/p&gt;

&lt;p&gt;Losing a password in Web2 is annoying.&lt;/p&gt;

&lt;p&gt;Losing a private key in Web3 can mean losing access permanently.&lt;/p&gt;

&lt;p&gt;I think that is why people emphasize wallet security so much in crypto. Your wallet is not just an app — it is literally your identity and ownership layer.&lt;/p&gt;

&lt;h2&gt;
  
  
  One Identity Across Everything
&lt;/h2&gt;

&lt;p&gt;Another thing I found really interesting is how portable blockchain identity becomes.&lt;/p&gt;

&lt;p&gt;In Web2, every app wants its own login:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;username&lt;/li&gt;
&lt;li&gt;password&lt;/li&gt;
&lt;li&gt;Google OAuth&lt;/li&gt;
&lt;li&gt;GitHub OAuth&lt;/li&gt;
&lt;li&gt;email verification&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On Solana, the same wallet can interact across completely different applications.&lt;/p&gt;

&lt;p&gt;Once you connect your wallet, apps can recognize:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what tokens you own&lt;/li&gt;
&lt;li&gt;NFTs you hold&lt;/li&gt;
&lt;li&gt;governance votes&lt;/li&gt;
&lt;li&gt;transaction history&lt;/li&gt;
&lt;li&gt;on-chain activity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without creating another account.&lt;/p&gt;

&lt;p&gt;That part honestly feels futuristic compared to the fragmented identity systems we use today.&lt;/p&gt;

&lt;h2&gt;
  
  
  Identity Becomes Infrastructure
&lt;/h2&gt;

&lt;p&gt;The more I learn about Solana, the more I realize wallets are not just for storing crypto.&lt;/p&gt;

&lt;p&gt;They are the foundation for interacting with the network itself.&lt;/p&gt;

&lt;p&gt;Your wallet becomes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;your login&lt;/li&gt;
&lt;li&gt;your signature&lt;/li&gt;
&lt;li&gt;your ownership proof&lt;/li&gt;
&lt;li&gt;your reputation&lt;/li&gt;
&lt;li&gt;your access layer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And unlike traditional platforms, it works across the entire ecosystem instead of being trapped inside one company’s database.&lt;/p&gt;

&lt;p&gt;That was the moment blockchain identity finally started making sense to me.&lt;/p&gt;

&lt;p&gt;Not as “magic internet crypto stuff,” but as a completely different model for proving ownership and trust online.&lt;/p&gt;

&lt;p&gt;MLH Challenge: [&lt;a href="https://www.mlh.com/events/100-days-of-solana/challenges" rel="noopener noreferrer"&gt;https://www.mlh.com/events/100-days-of-solana/challenges&lt;/a&gt;]&lt;/p&gt;

</description>
      <category>100daysofsolana</category>
      <category>solana</category>
      <category>web3</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
