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

推荐订阅源

爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 【当耐特】
The Cloudflare Blog
B
Blog
Last Week in AI
Last Week in AI
小众软件
小众软件
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 叶小钗
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
A
About on SuperTechFans
雷峰网
雷峰网
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler

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
Creating My First Token on Solana Devnet as a Web2 Developer
Tobi Ayinmir · 2026-05-25 · via DEV Community

As a web developer, I’m used to building systems where currencies, rewards, and balances live inside databases controlled by the backend.

This week was my first time creating an actual on-chain token on Solana, and honestly, it changed how I think about digital assets.

Instead of storing balances in a database table, the blockchain itself handled everything — minting, transfers, metadata, and verification.

In this post, I’ll walk through how I created my first token on Solana devnet using Token-2022, added metadata to it, minted supply, and transferred tokens between wallets.


What I Needed Before Starting

Before creating the token, I needed:

  • Solana CLI installed
  • SPL Token CLI installed
  • A funded devnet wallet
  • Solana configured to devnet

First, I configured Solana to use devnet:

solana config set --url devnet

Enter fullscreen mode Exit fullscreen mode

Then I requested free devnet SOL:

solana airdrop 2

Enter fullscreen mode Exit fullscreen mode


Creating My First Token Mint

Unlike the older SPL Token Program, I used the newer Token-2022 Program because it supports extensions like:

  • Metadata
  • Transfer fees
  • Interest-bearing tokens
  • Non-transferable (soulbound) tokens

Here’s the command I used:

spl-token create-token \
  --program-id TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb \
  --enable-metadata \
  --decimals 6

Enter fullscreen mode Exit fullscreen mode

After running it, Solana generated a token mint address for me.

At this point, the token technically existed on-chain, but it still had no identity.

It was basically just a random string of characters.


Adding Metadata to the Token

This was one of the coolest parts for me.

I learned that Solana’s Token-2022 Program allows metadata to live directly on-chain instead of depending entirely on separate programs.

I initialized the token metadata like this:

spl-token initialize-metadata \
  <TOKEN_MINT_ADDRESS> \
  "<TOKEN_NAME>" \
  "<TOKEN_SYMBOL>" \
  "<TOKEN_METADATA_URI>"

Enter fullscreen mode Exit fullscreen mode

Example placeholders:

  • <TOKEN_MINT_ADDRESS> → your token mint address
  • <TOKEN_NAME> → e.g. MyCoin
  • <TOKEN_SYMBOL> → e.g. MYC
  • <TOKEN_METADATA_URI> → public JSON metadata link

At this point, my token finally had:

  • a name
  • a symbol
  • metadata attached to it

That made it feel like a real digital asset instead of just raw blockchain data.


Creating a Token Account

One concept that confused me initially was token accounts.

I assumed my wallet could directly hold tokens.

That’s not exactly how Solana works.

On Solana:

  • the mint defines the token
  • token accounts hold balances for that token

So before I could receive my token, I had to create a token account:

spl-token create-account <TOKEN_MINT_ADDRESS>

Enter fullscreen mode Exit fullscreen mode

This generated an associated token account tied to my wallet and token mint.


Minting My First Supply

Now came the exciting part.

I minted 1000 tokens into my token account:

spl-token mint <TOKEN_MINT_ADDRESS> 1000

Enter fullscreen mode Exit fullscreen mode

Then I checked the balance:

spl-token balance <TOKEN_MINT_ADDRESS>

Enter fullscreen mode Exit fullscreen mode

And seeing this:

1000

Enter fullscreen mode Exit fullscreen mode

it felt surprisingly rewarding to be honest


Creating a Second Wallet

To test transfers properly, I created a second wallet:

solana-keygen new \
  --outfile ~/second-wallet.json \
  --no-bip39-passphrase

Enter fullscreen mode Exit fullscreen mode

This simulated sending tokens to another user.


Transferring Tokens

I transferred 250 tokens to the second wallet:

spl-token transfer \
  <TOKEN_MINT_ADDRESS> \
  250 \
  $(solana-keygen pubkey ~/second-wallet.json) \
  --fund-recipient \
  --allow-unfunded-recipient

Enter fullscreen mode Exit fullscreen mode

The --fund-recipient flag automatically created the recipient’s token account if it didn’t already exist.

That was another thing that clicked for me:
even receiving tokens on Solana involves token accounts behind the scenes.


Verifying the Transfer

I checked both balances.

My wallet balance:

spl-token balance <TOKEN_MINT_ADDRESS>

Enter fullscreen mode Exit fullscreen mode

Recipient wallet balance:

spl-token balance \
  --owner $(solana-keygen pubkey ~/second-wallet.json) \
  <TOKEN_MINT_ADDRESS>

Enter fullscreen mode Exit fullscreen mode

The balances showed:

  • 750 in my wallet
  • 250 in the second wallet

The transfer worked successfully.


What Confused Me Initially

One of the biggest things that confused me was the difference between:

  • wallet addresses
  • token accounts
  • token mints

At first, I thought:

“Why can’t I just send directly to the wallet?”

But Solana separates:

  • the wallet owner
  • the token account holding balances
  • the token definition itself

Once that clicked, the entire token system started making much more sense.


What Surprised Me Most

The biggest surprise was realizing how much logic the blockchain itself handles.

In Web2, building something similar would require:

  • database tables
  • backend APIs
  • transfer validation
  • balance management
  • permission handling

On Solana:

  • the protocol handles balances
  • token programs enforce rules
  • transactions are verifiable on-chain

It felt like moving backend business logic directly into infrastructure.


Final Thoughts

Creating my first token on Solana made Web3 feel much less abstract.

Before this, tokens felt like mysterious blockchain concepts.

Now I understand that they’re actually programmable digital assets with rules enforced directly by the protocol.

This was my first step into Solana development, and it definitely won’t be the last.

Next, I want to explore:

  • transfer fee extensions
  • soulbound tokens
  • Solana programs with Rust
  • building full-stack dApps

If you’re coming from Web2 development, my advice is simple:

Start building.

Things make much more sense once you actually create something yourself.

link to the token: https://explorer.solana.com/address/vXRh8HHmjeFvpQgt19EEqf6iaAQxqM8NtCdTwCAqozu?cluster=devnet