惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
WEEK 3 #100DAYSOFSOLANA: SHARING MY TOOL AND OUTPUT
Peter Okoh · 2026-05-11 · via DEV Community

When I first started learning Solana, transactions felt like magic.

You click "Send", wait a few seconds, and somehow value moves across a decentralised network. But after spending time building and debugging transactions myself, I realised that every Solana transaction has a very clear structure underneath it.

And honestly, understanding that structure made blockchain feel far less mysterious.

A transaction is more than “sending crypto”

Coming from Web2, I initially compared a Solana transaction to an API request.

You send data somewhere, something processes it, and the system changes state.

That analogy helps at first, but it breaks pretty quickly.

A Solana transaction is closer to a signed package of instructions that the network verifies before allowing any state change to happen. It’s atomic too, meaning either everything succeeds or nothing does, similar to a database transaction.

But unlike a normal API request, Solana transactions require cryptographic signatures and expire after a short period of time.

That was one of the first things that surprised me.

The four parts that finally made things click

  1. Signatures: Proof of authorization

The signature is what proves that the transaction was approved by the owner of the wallet.

Without it, the network rejects the transaction completely.

It reminded me a bit of authentication tokens in Web2, except this is cryptographic proof instead of session-based trust.

When I used the Solana CLI to send SOL between wallets, I was unknowingly generating signatures every single time.

solana transfer 0.01 --allow-unfunded-recipient

At first, this just felt like a command.

Later, I realised I was actually signing an instruction with my private key and asking the network to verify it.

That perspective changed everything for me.

  1. Instructions: The actual action being requested

Instructions are the real “what should happen” part of the transaction.

For example:

Transfer SOL
Create an account
Interact with a programme.
Mint a token

A single transaction can even contain multiple instructions bundled together.

That was unexpected for me because I originally assumed one transaction always meant one action.

But on Solana, a transaction can coordinate several operations at once.

  1. Accounts: The data being read or modified

This was probably the biggest mindset shift.

In Web2, I’m used to thinking in terms of databases, tables, and backend-controlled state.

On Solana, everything revolves around accounts.

Transactions specify which accounts they want to interact with, whether those accounts are:

being modified
read from
signed by
or owned by a program

The network checks permissions before allowing anything to happen.

That level of explicitness felt uncomfortable at first, but it also made the system feel transparent.

Nothing is hidden.

  1. Recent blockhash: A built-in expiration timer

This part confused me initially.

Why does a transaction need a recent blockhash?

Then it clicked: it prevents old transactions from being replayed forever.

A recent blockhash acts like a freshness check. If the transaction takes too long to process, it expires and becomes invalid.

In Web2, API requests usually don’t “expire” because of network state in this way.

That difference really showed me how blockchain systems think differently about trust and validation.

The biggest lesson for me is that a Solana transaction is not just “sending crypto".

It’s a structured, signed request for state changes on a public network.

Once I started understanding signatures, instructions, accounts, and recent blockhashes, transactions stopped feeling like magic and started feeling like systems engineering.

And that’s when Solana really began to make sense to me.

solana #100DaysOfSolana