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

推荐订阅源

C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
WordPress大学
WordPress大学
月光博客
月光博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - 司徒正美
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
Blog — PlanetScale
Blog — PlanetScale
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
L
LangChain Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
量子位

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
Sending Your First SOL Transfer (Devnet, via CLI)
Vinay · 2026-05-06 · via DEV Community

This walkthrough focuses on executing a SOL transfer using the Solana CLI - while understanding the underlying mechanics at each step. If you’ve used payment APIs like Stripe or PayPal, the flow is conceptually similar: authenticate, define recipient, specify amount, submit. The difference is architectural, transactions go directly to the network and finalize in sub-seconds, without intermediaries.


Environment Requirements

  • Terminal (macOS, Linux, or Windows WSL)
  • Solana CLI installed
  • A keypair (existing or newly generated)

1. Configure CLI to Devnet

solana config set -ud
solana config get

Enter fullscreen mode Exit fullscreen mode

Key point:
You are selecting the cluster (network). Devnet is a sandbox environment with no real economic cost. The RPC endpoint (https://api.devnet.solana.com) acts as your interface to the validator network.

Why it matters:

All subsequent commands - balance queries, transfers, account creation are executed against this network.

Example:
Step 1 - Configure wallet


2. Check Balance and Fund Wallet

solana balance
solana airdrop 2

Enter fullscreen mode Exit fullscreen mode

Key point:

Transactions require:

  • Sufficient balance for the transfer amount
  • A small fee for network processing

Airdrop behavior:

  • Devnet validators mint SOL for testing
  • Requests are capped (typically 5 SOL)

If airdrop fails:
You can fund your wallet using the Solana Faucet as an alternative.

Why it matters:
Without sufficient balance, the transaction cannot be constructed or submitted.

Example:
Step 2 - Check Balance


3. Generate a Recipient Keypair

solana-keygen new --outfile ~/recipient-keypair.json --no-bip39-passphrase

Enter fullscreen mode Exit fullscreen mode

Key point:
You are creating a cryptographic identity:

Private key → signs transactions
Public key → acts as the address

Important nuance:
This account does not yet exist on-chain - it becomes a real account only after being funded.

Why it matters:
Solana distinguishes between:

  • Off-chain keypairs (identity)
  • On-chain accounts (state containers)

Example:
Step 3 - Generate keypair


4. Execute the Transfer

solana transfer <RECIPIENT_PUBLIC_KEY> 0.5 --allow-unfunded-recipient

Enter fullscreen mode Exit fullscreen mode

Key point:
This command:

  • Constructs a transaction with a System Program transfer instruction
  • Signs it with your private key
  • Submits it to a validator via RPC

Flag explanation:

--allow-unfunded-recipient allows the network to create the recipient account implicitly

Why it matters:
On Solana, accounts must be explicitly created and funded. This step combines:

  • Account creation
  • Value transfer into a single atomic transaction.

Example:
Step 4 - Execute the transfer


5. Verify State Changes

solana balance
solana balance <RECIPIENT_PUBLIC_KEY>

Enter fullscreen mode Exit fullscreen mode

Key point:
You are querying on-chain state post-finalization.

Expected outcome:

  • Sender balance decreases (transfer + fee)
  • Recipient balance increases
  • Recipient account now exists on-chain

Why it matters:
This confirms the transaction was validated, executed, and finalized by the network.

Example:
Step 5 - Verify change in balance


6. Inspect the Transaction

Open your transaction using the signature in Solana Explorer:

Key point:
You are viewing the transaction as recorded in the ledger.

Details include:

  • Accounts involved
  • Instruction data
  • Fees
  • Slot (block inclusion)
  • Confirmation status

Why it matters:
The explorer reflects canonical on-chain data - this is the definitive record of execution.

Example:
Step 6.1 - Transaction (Solana explorer)
Step 6.2 - Account inputs (Solana explorer)
Step 6.3 - Program instruction (Solana explorer)
View above transaction in solana explorer


Full Command Flow

solana config set -ud
solana airdrop 2
solana-keygen new --outfile ~/recipient-keypair.json --no-bip39-passphrase
solana transfer <RECIPIENT_PUBLIC_KEY> 0.5 --allow-unfunded-recipient
solana balance
solana balance <RECIPIENT_PUBLIC_KEY>

Enter fullscreen mode Exit fullscreen mode


What This Demonstrates

  • Direct transaction submission to a decentralized validator network
  • Atomic state transitions (account creation + transfer)
  • Explicit account model requiring funding for existence

At a systems level, you:

  • Defined network context (devnet RPC)
  • Generated identities
  • Authored and signed a transaction
  • Submitted it to the network
  • Observed deterministic state changes

This is the foundational workflow for interacting with Solana.