How Solana's Account Model Differs from Ethereum — and Why It Matters for DeFi Developers
If you've built on Ethereum and you're now exploring Solana, the first thing that will trip you up isn't the language (Rust takes getting used to, but…
Latest Web news from Tech News
If you've built on Ethereum and you're now exploring Solana, the first thing that will trip you up isn't the language (Rust takes getting used to, but…
If you come from Web2, you probably think of a token as a number in a database that moves around when people transact. On Solana, the original SPL Tok…
As a backend developer, I came into Solana thinking transactions were basically API requests. You send some data, the network processes it, and you ge…
[Sofi_Log: #016] Status: Clear skies, piercing UV rays (UV Index 11) / 1 THB = 4.25 JPY (2026 forecast) Project: sofi.works [Phase: Longevity Protocol…
Before this week, NFTs on Solana weren't new to me. I've previously worked with Programmable NFTs ( pNFTs ) and even built projects that integrate the…
To understand why Solana can process tens of thousands of transactions per second while maintaining sub-second finality, you have to look past the mar…
On April 1, 2026, Solana's largest decentralized perpetual futures exchange Drift Protocol suffered an attack, losing approximately $285 million . Thi…
I specced an on-chain credit ledger for a compute network, wrote the mint, and then the token program refused to initialize it. The two extensions I n…
I spent 7 days learning Solana token extensions. Here's what clicked, what surprised me, and the code you need to build tokens that can't be traded bu…
Over the past few days, I've been learning Solana transactions by doing what every developer eventually does: building things, breaking them, and tryi…
I built a Python CLI that fetches real-time Solana DEX liquidity data — no pip install, no API key, just the standard library and a terminal. Here's h…
As a Web2 developer, you already have a comfortable mental model of what an "identity" is. When you build a simple app, a user's identity is just a ro…
Coming from Web2 backend systems, I used to think blockchain interactions were just API calls: send a request, get a response, and move on. Solana qui…
As a backend developer comfortable with Python, databases, and standard web servers, jumping into Web3 felt like entering an entirely different univer…
If you come from Web2, the idea of “identity” probably means usernames, emails, passwords, and OAuth logins. You have a GitHub account. A Google accou…
Deploy Smart Contracts from Claude Desktop: Claude Desktop just gained the ability to deploy smart contracts through WAIaaS's MCP tools. With 45 MCP t…
I spent weeks reading Solana accounts through explorers and RPC calls, seeing nicely formatted data token balances, authorities, supply numbers and th…
Coming from a Python and Node.js backend background, I honestly expected blockchain development to feel extremely complicated and disconnected from “n…
Every Solana dashboard tells you the network's TPS. None of them tell you how busy the one program you care about is right now. Did Pumpfun cool off a…
There’s something quietly satisfying about seeing a token you built from scratch exist on-chain. Not just a random mint address… But a token with its …
In a previous article I posted on my #100daysofsolana journey, I wrote about how everything on Solana is an account. I spoke briefly about the differe…
Solana as a Giant Database Think of Solana as a massive, globally distributed database where every piece of data lives in its own record called an acc…
When we compare a normal(web2) account signup to signup on blockchain(web3) one question comes to mind: how does the blockchain know this account is r…
TL;DR I built a small Solana program activity indexer in Rust to pressure-test the patterns I rely on every day in Python — cursor-based syncs, idempo…
Why Exploration Beats Documentation You can read about Solana's architecture for hours. Or you can spend 20 minutes on Solana Explorer and see it. Thi…
What Is Solana Explorer? If you've spent the last few weeks writing scripts to fetch account balances, decode transactions, and inspect on-chain progr…
The Aha Moment During Epoch 1 of #100DaysOfSolana , I hit a wall. I'd built wallets, sent transactions, decoded data — but nothing clicked until I sto…
As we approach the end of Epoch 1 of the 100 Days of Solana , it’s time to look back at the core concepts that form the bedrock of everything we build…
If you've built a Solana DeFi agent recently, you know the shape of the work. You write a quote function. It calls Jupiter directly because that's whe…
This is a submission for the 100 Days of Solana Writing Challenge , running from 15 May to 22 May. Where the confusion started When I first started re…