20 days into Solana and transactions finally make sense.
This is the summary of everything I have learned about transaction in Solana- Transaction are not just messages or amount send. Transaction contains m…
Latest Web news from Tech News
This is the summary of everything I have learned about transaction in Solana- Transaction are not just messages or amount send. Transaction contains m…
Arc 7 of 100 Days of Solana was about building NFTs from first principles. Instead of starting with marketplaces, profile pictures, or NFT culture, th…
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…
If you have made it this far in 100 Days of Solana, you have been working in JavaScript and on the command line. You have been calling RPC methods, bu…
If you have built middleware in Web2, you already understand Token-2022 extensions. The old SPL token program is like a plain Express router. Token-20…
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…
Before this week I thought you needed Metaplex to build a real Solana NFT. It turns out you can mint a full NFT, stamp metadata directly onto it, grou…
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…
I spent the past month building on Solana. Sent transfers. Decoded raw bytes. Inspected accounts until my terminal turned into a wall of hex. Along th…
My experience honestly has been fun .. learning about the Solana blockchain, how to build on it and everything in between. the concept which has stuck…
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…
Unlike in case of Web2 ,Web3 enables self-soverign identity (SSI) model which allows users to control their digital identity. Users in web3 can decide…
If you have been following the 100 Days of Solana challenges, you have already worked with tokens. You created mints, set up token accounts, transferr…
I've been building on EVM chains for a while Base, Ethereum, the usual. I thought picking up Solana would be a lateral move. Same concept, different s…
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…
If you told me a week ago that I could create a custom currency, add brand metadata, enforce automatic transaction fees, and create "soulbound" non-tr…
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…
On Solana there is just... accounts. One model. Everything is an account — your wallet, a deployed program, a token mint, a user's token balance. All …
The Challenge Day 25 of 100 Days of Solana: inspect system program accounts. Your wallet, the System Program, native programs, sysvar accounts. Use th…
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 …
On Solana, everything is an account. There’s no separation between wallet accounts, smart contracts, or data storage. They all live in one unified sys…
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…
I came into this with small Web3 experience. Most of the early lessons felt normal, familiar. But the "everything is an account" model on Solana took …
The Challenge Day 26 of 100 Days of Solana is open-ended: explore Solana Explorer, find something interesting, compare it to what you've been doing in…