<?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: Akeem Palmer</title>
    <description>The latest articles on DEV Community by Akeem Palmer (@akeempalmer).</description>
    <link>https://dev.to/akeempalmer</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%2F3889865%2F66a62b7b-cf69-49e5-be07-0a782bad2567.jpeg</url>
      <title>DEV Community: Akeem Palmer</title>
      <link>https://dev.to/akeempalmer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akeempalmer"/>
    <language>en</language>
    <item>
      <title>Day 7: Building My First Solana Wallet from Scratch</title>
      <dc:creator>Akeem Palmer</dc:creator>
      <pubDate>Sun, 26 Apr 2026 17:36:53 +0000</pubDate>
      <link>https://dev.to/akeempalmer/day-7-building-my-first-solana-wallet-from-scratch-21ik</link>
      <guid>https://dev.to/akeempalmer/day-7-building-my-first-solana-wallet-from-scratch-21ik</guid>
      <description>&lt;p&gt;I generated my first Solana key-pair using the CLI (Command Line Interface) and funded it through the Solana faucet, as well as a transfer from my Solflare wallet.&lt;/p&gt;

&lt;p&gt;After just six days in the 100 Days of Solana challenge, I’ve gained a solid foundation on how Solana works; covering identity, SOL, and Lamports.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9iogiiz0afq0kmk6ywwq.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9iogiiz0afq0kmk6ywwq.JPG" alt="Screenshot of my CLI wallet" width="800" height="198"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe2zu3xwwdc5w9bm9iror.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe2zu3xwwdc5w9bm9iror.PNG" alt="Making a transfer to my CLI wallet from my Solflare wallet" width="800" height="1731"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you’re interested, check out my previous post on Solana identity: &lt;a href="https://dev.to/akeempalmer/exploring-web3-and-how-solana-handles-identity-468f"&gt;Exploring Web3 and How Solana Handles Identity&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Looking forward to continuing this journey and sharing more as I progress.&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
      <category>100daysofsolana</category>
      <category>solana</category>
    </item>
    <item>
      <title>Exploring Web3 and How Solana Handles Identity</title>
      <dc:creator>Akeem Palmer</dc:creator>
      <pubDate>Sun, 26 Apr 2026 15:07:07 +0000</pubDate>
      <link>https://dev.to/akeempalmer/exploring-web3-and-how-solana-handles-identity-468f</link>
      <guid>https://dev.to/akeempalmer/exploring-web3-and-how-solana-handles-identity-468f</guid>
      <description>&lt;p&gt;From Web2 to Web3, identity remains an important aspect for authentication and authorization for both users and the server owners. However, the underlying architecture is shifting. In Web2, we rely on usernames and passwords stored on server owner’s hardware or handled by SSO vendors like Auth0, Google or Microsoft. On the other hand, in Web3 we swap databases for cryptographic keys. In this post, we’ll dive into how the Solana network uses these keys for On-Chain Identification. &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The Key-pair: Your New Credentials&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Solana is a high-performance network powering decentralized finance (DeFi), NFTs and decentralized applications (dApps). Unlike traditional systems where a server “owns” your identity, Solana uses a Public Key as your unique address. &lt;/p&gt;

&lt;p&gt;Think of it this way:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Public Key (Your Username):&lt;/strong&gt; A unique 32-byte address. This is what people use to send you tokens.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Private Key (Your Password):&lt;/strong&gt; A digital signature that stays on your personal device. You use this to “sign” and authorize transactions. &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Ed25519 vs. PDAs&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Wallets usually use the Ed25519 digital signature, with the exception of Multisig Wallets or Smart wallets (Escrows, etc..), When you create an account, it must be accompanied by a private key that you or a secure third-party vendor maintains. &lt;/p&gt;

&lt;p&gt;Solana uses PDAs (Program Derived Addresses), which are unique addresses that is not associated with a private key. Instead, they rely on a Program ID and specific seeds like user ID or user public key for authentication. This allows programs to programmatically sign for accounts. We can think of it like a service account in a cloud environment. &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Beyond Usernames: What Identity Enables&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;On-chain identity isn’t just a replacement for a login, it’s a self-custodied foundation for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Token Ownership:&lt;/strong&gt; Providing what assets you hold.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Governance:&lt;/strong&gt; Your right to vote on protocol changes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reputation:&lt;/strong&gt; Your history on the public ledger is permanent and verifiable.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because this is cryptographic, it works across every application on the network without needing server permission or an API integration. Your identity allows you to be discovered on the network, receive tokens, and maintain a wallet assignment globally.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The Math: SOL and Lamports&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Once you have your identity, you’ll interact with SOL, Solana’s native cryptocurrency. Programmatically, we don’t usually work in whole SOL, we work in Lamports. Lamports are SOL’s smallest fractional unit. &lt;/p&gt;

&lt;p&gt;1 SOL = 1,000,000,000 (10⁹) Lamports.&lt;/p&gt;

&lt;p&gt;Think of Lamports as cents or pennies and SOL as dollars. This allows for high-precision transactions without the floating-point errors we try to avoid in financial code.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Conclusion: Who Owns The Server?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The biggest shift from Web2 to Web3 is ownership. In Web2, there is one true owner: the entity hosting the servers. In Web3, the network is decentralized and hosted across the globe. &lt;/p&gt;

&lt;p&gt;I’m currently participating in the &lt;a href="https://www.mlh.com/events/100-days-of-solana/challenges" rel="noopener noreferrer"&gt;100 Days of Solana challenge&lt;/a&gt; hosted by &lt;a href="https://www.mlh.com/" rel="noopener noreferrer"&gt;Major League Hacking (MLH)&lt;/a&gt;. If you’re a developer looking to move from centralized databases to the blockchain, I highly encourage you to join!&lt;/p&gt;

&lt;p&gt;I’d love to hear your feedback on this research in the comments below. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Image Generated By A.I&lt;/strong&gt;&lt;/p&gt;

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