<?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: ajith pkumar</title>
    <description>The latest articles on DEV Community by ajith pkumar (@ajith_pkumar_e1ccbd40a88b).</description>
    <link>https://dev.to/ajith_pkumar_e1ccbd40a88b</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%2F3887872%2F922dedac-76c1-42fa-83d5-573f16ec0313.png</url>
      <title>DEV Community: ajith pkumar</title>
      <link>https://dev.to/ajith_pkumar_e1ccbd40a88b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ajith_pkumar_e1ccbd40a88b"/>
    <language>en</language>
    <item>
      <title>Transactions in Solana</title>
      <dc:creator>ajith pkumar</dc:creator>
      <pubDate>Mon, 18 May 2026 14:50:34 +0000</pubDate>
      <link>https://dev.to/ajith_pkumar_e1ccbd40a88b/transactions-in-solana-2m6p</link>
      <guid>https://dev.to/ajith_pkumar_e1ccbd40a88b/transactions-in-solana-2m6p</guid>
      <description>&lt;p&gt;A few days ago, I knew almost nothing about how Solana transactions actually worked. I thought sending a transaction would feel similar to making an API request in a typical backend application — send data, get a response, done. But after building and debugging transactions on Solana devnet, I realized the mental model is very different.&lt;/p&gt;

&lt;p&gt;In Solana, you interact directly with a decentralized state machine where every action is signed, validated, recorded on-chain, and eventually finalized by the network. They require cryptographic signatures. They expire after a short time because of blockhash validity. That last part surprised me the most. Transactions are tied to a recent blockhash, which means they cannot stay valid forever.&lt;br&gt;
I started by creating a simple CLI tool that sends SOL on devnet.&lt;br&gt;
One concept that really changed my understanding was commitment levels.&lt;br&gt;
Initially, I assumed a transaction was either successful or failed. But Solana actually has multiple confirmation stages:&lt;/p&gt;

&lt;p&gt;processed&lt;br&gt;
confirmed&lt;br&gt;
finalized&lt;/p&gt;

&lt;p&gt;I added polling logic to track transactions through each stage.&lt;/p&gt;

&lt;p&gt;await waitForCommitment(rpc, signature, "confirmed");&lt;br&gt;
await waitForCommitment(rpc, signature, "finalized");&lt;/p&gt;

&lt;p&gt;That made me realize blockchain confirmations are not instant yes/no responses. The take time, a transaction that is confirmed is updated to finalized only after 30+ blocks are stacked in front of it. This only takes few seconds. They represent increasing confidence from the network.&lt;br&gt;
Failed Transactions Taught Me More Than Successful Ones. At the end we get the transaction signature providing all the details of the transaction.&lt;/p&gt;

&lt;p&gt;One of the most useful exercises was intentionally breaking transactions.&lt;br&gt;
What surprised me was that failed transactions can still consume fees. That’s why balance checks before sending are important.&lt;/p&gt;

&lt;p&gt;The biggest lesson for me was understanding that transactions are not just “requests.” They are signed, time-sensitive that become part of a permanent public ledger.&lt;/p&gt;

&lt;p&gt;I still have a lot to learn, especially around programs, PDAs, and full dApp architecture, but building and debugging transactions made Solana feel much more real and approachable.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>blockchain</category>
      <category>programming</category>
      <category>web3</category>
    </item>
    <item>
      <title>Day 13: Solana 
I expected blockchain data to be complicated. But it’s essentially a public database where every transaction, account, and state change can be queried openly. Now I would like to understand solana contracts and dApps, create one of my own.</title>
      <dc:creator>ajith pkumar</dc:creator>
      <pubDate>Fri, 08 May 2026 16:41:35 +0000</pubDate>
      <link>https://dev.to/ajith_pkumar_e1ccbd40a88b/week-13-solana-i-expected-blockchain-data-to-be-complicated-but-its-essentially-a-public-5ff6</link>
      <guid>https://dev.to/ajith_pkumar_e1ccbd40a88b/week-13-solana-i-expected-blockchain-data-to-be-complicated-but-its-essentially-a-public-5ff6</guid>
      <description></description>
      <category>beginners</category>
      <category>blockchain</category>
      <category>devjournal</category>
      <category>web3</category>
    </item>
  </channel>
</rss>
