<?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>Forem: Murtala Mudi</title>
    <description>The latest articles on Forem by Murtala Mudi (@mudimurtala).</description>
    <link>https://forem.com/mudimurtala</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1278866%2F141c2df9-98a9-4b93-b3c2-29bdc8424024.jpeg</url>
      <title>Forem: Murtala Mudi</title>
      <link>https://forem.com/mudimurtala</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/mudimurtala"/>
    <language>en</language>
    <item>
      <title>How Amazing I felt After Sending SOL from my phone to my local Ubuntu terminal</title>
      <dc:creator>Murtala Mudi</dc:creator>
      <pubDate>Mon, 25 May 2026 14:38:34 +0000</pubDate>
      <link>https://forem.com/mudimurtala/how-amazing-i-felt-after-sending-sol-from-my-phone-to-my-local-ubuntu-terminal-4je9</link>
      <guid>https://forem.com/mudimurtala/how-amazing-i-felt-after-sending-sol-from-my-phone-to-my-local-ubuntu-terminal-4je9</guid>
      <description>&lt;p&gt;Hi everyone, I moved to Day 7 of the 100 days of Solana challenge today and I can say It has been very interesting to go through all these experiments. &lt;/p&gt;

&lt;p&gt;I did something really cool. I tried sending devnet SOL from the normal Phantom app I downloaded on my mobile phone straight to the CLI wallet on my local computer's terminal. To be honest, I found it so fascinating that I even did it twice! I just wanted to confirm and see exactly how things work in real-time, and it was amazing to watch the command line balance increase the moment I sent it from my phone.&lt;/p&gt;

&lt;p&gt;While doing this, I noticed a big difference in how these wallets handle security and convenience:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The Mobile Wallet:&lt;/strong&gt; I noticed that the app on my phone is not that convenient for quick back-and-forth work. Even without minimizing it or moving out of the app, after some seconds or minutes, it just asks me to confirm my fingerprint again. The moment I move out of the app to check something on my browser and come back, it must require that I initiate my fingerprint again. Even though this is not that convenient, I think it is the most secure way to safeguard my digital assets so that they can be accessed by only me and not anyone else.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The CLI Wallet:&lt;/strong&gt; On the other hand, the one on my local computer is just the most convenient. All I need is to type in the command to do something, either to show the remaining balance or transfer something, and it just works instantly without asking for fingerprints every second. &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;For my personal use, I will definitely choose the one on my phone because I want my digital assets to be completely secured. But for development and practicing code, the CLI is just the best because it is fast. &lt;/p&gt;

&lt;p&gt;It feels great to see how these different wallets connect on the same network. I am excited to finish this first week and see what is required of me in the next steps! &lt;/p&gt;

&lt;p&gt;Let me know how your first week went!&lt;/p&gt;

</description>
      <category>100daysofsolana</category>
      <category>web3</category>
      <category>blockchain</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Dear Web2 Developer... Solana is here calling</title>
      <dc:creator>Murtala Mudi</dc:creator>
      <pubDate>Mon, 25 May 2026 13:15:21 +0000</pubDate>
      <link>https://forem.com/mudimurtala/dear-web2-developer-solana-is-here-calling-3pmj</link>
      <guid>https://forem.com/mudimurtala/dear-web2-developer-solana-is-here-calling-3pmj</guid>
      <description>&lt;p&gt;As web developers, we know exactly how user accounts work. When a user signs up for an application, we create a &lt;code&gt;users&lt;/code&gt; table in a database. We hash their password, assign them a unique &lt;code&gt;user_id&lt;/code&gt;, and manage their session status using tokens or cookies. &lt;/p&gt;

&lt;p&gt;In this traditional Web2 setup, identity is entirely fragmented. A user is one row in a GitHub database, another row in a LinkedIn database, and another row in their banking application. None of these applications inherently speak to each other, and more importantly, the user doesn't actually own their identity, the company hosting the database actually does. If an admin deletes that database row, that identity is gone.&lt;/p&gt;

&lt;p&gt;As I've been jumping into the first week of the &lt;strong&gt;100 Days of Solana&lt;/strong&gt; challenge, the biggest mental shift wasn't learning a new framework; it was redefining what "identity" actually means on a blockchain.&lt;/p&gt;

&lt;p&gt;Check how identity works on Solana below, I explained it through concepts we're already familiar with in our everyday life.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Model: You Already Use Web3 Identity (I'm assume this to be true)
&lt;/h2&gt;

&lt;p&gt;You connecting to a remote server or you securely pushing code to GitHub using terminal commands, knowingly or unknowingly, you've already used the core engine of Web3 identity: &lt;strong&gt;SSH Keypairs&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;When setting up SSH, you run a command locally to generate a keypair. This gives you:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A &lt;strong&gt;Public Key&lt;/strong&gt; that you safely share with GitHub or a remote Linux server.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;Private Key&lt;/strong&gt; that stays hidden inside your machine's local configuration files.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;When you push code, your machine uses your private key to cryptographically "sign" the request. The server uses your public key to verify that the signature is valid. &lt;/p&gt;

&lt;p&gt;Solana works exactly the same way. On-chain identity starts with an &lt;strong&gt;Ed25519 cryptographic keypair&lt;/strong&gt;. There are no centralized registration forms, no email verifications, and no usernames. The entire network acts as a single, global ledger, and your public key is your universal identity across every single application built on top of it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Breakdown of a Solana Address
&lt;/h2&gt;

&lt;p&gt;In Web2, your username might be &lt;code&gt;dev_muritala&lt;/code&gt;. On Solana, your identity looks more like this: &lt;code&gt;4zMMC9srtxt2nvbBt3wjfBBs71A7HK8gZrybFmZuxyJu&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;This string is a 32-byte public key encoded in &lt;strong&gt;Base58&lt;/strong&gt;. Cryptographers deliberately chose Base58 for blockchain addresses because it optimizes for human scannability by completely removing visually ambiguous characters. You won't find the number &lt;code&gt;0&lt;/code&gt;, uppercase &lt;code&gt;O&lt;/code&gt;, uppercase &lt;code&gt;I&lt;/code&gt;, or lowercase &lt;code&gt;l&lt;/code&gt; in a Solana address. This prevents catastrophic copy-paste mistakes when developers or users are routing assets or interacting with software on-chain.&lt;/p&gt;

&lt;h2&gt;
  
  
  Custody: No Password Reset Flows
&lt;/h2&gt;

&lt;p&gt;The shift in architectural control changes everything when transitioning from Web2 to Web3. &lt;/p&gt;

&lt;p&gt;In Web2, if a user loses their credentials, they click a "Forgot Password" link. An automated backend system sends an email link, verifies their response, and updates the database row. The platform retains ultimate authority over the account data.&lt;/p&gt;

&lt;p&gt;On Solana, there is no corporate admin panel, no support desk, and no password reset flow. Identity is completely non-custodial. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If your private key lives as a plaintext file on your local development machine (like a standard CLI development environment), it is highly scriptable but vulnerable if the machine compromises.&lt;/li&gt;
&lt;li&gt;If your private key is encrypted inside a browser extension wallet (like Phantom), it introduces a secure confirmation popup layer before any transaction can execute.&lt;/li&gt;
&lt;li&gt;If it is guarded behind mobile OS secure sandboxes protected by biometric fingerprint scanners, it trades off rapid script deployment for superior physical protection.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But regardless of the storage medium, &lt;strong&gt;whoever holds the private key owns the identity.&lt;/strong&gt; If you lose the key material or your recovery seed phrase, the identity is mathematically unrecoverable. &lt;/p&gt;

&lt;h2&gt;
  
  
  What This Identity Enables
&lt;/h2&gt;

&lt;p&gt;This cryptographic setup does more than just replace the traditional username/password paradigm. Because your identity is recognized globally by the entire Solana runtime, it acts as a universal passport.&lt;/p&gt;

&lt;p&gt;With a single public key, you can simultaneously hold tokens, execute custom code routines, vote on platform governance protocols, and build a verifiable developer reputation across hundreds of independent ecosystem tools. You don't need to request access or integrate third-party OAuth providers. You simply sign a permission request with your private key, and you are instantly authenticated.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Transitioning into Web3 as a developer requires looking past the surface level of tools and looking directly at the architectural foundation. Identity on Solana isn't a collection of accounts granted to you by corporate servers, it is a sovereign, mathematical certainty that you control completely from your own local workspace.&lt;/p&gt;

&lt;p&gt;If you are a developer looking to build systems where users have true ownership of their data and actions, understanding the mechanics of the cryptographic keypair is your first real step.&lt;/p&gt;

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