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

推荐订阅源

Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
爱范儿
爱范儿
博客园_首页
博客园 - 聂微东
量子位
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
The Cloudflare Blog
T
Tailwind CSS Blog
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
腾讯CDC

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
Three Token-2022 Mints in One Week: Fees, Yield, and Soul...
Erick Carvajal · 2026-06-28 · via DEV Community

Erick Carvajal

During the last few days of the 100 Days Of Solana challenge, I explored one of the most interesting features of Solana's Token-2022 Program: extensions.

Image

If you're coming from Web2, think of Token-2022 extensions like middleware. Instead of creating an entirely new token standard every time you need a new feature, you simply enable additional behaviors on a mint. The token keeps following the SPL Token standard while gaining new capabilities such as transfer fees, interest-bearing balances, or transfer restrictions.

In this article I’ll walk through the three Token-2022 mints I built during the challenge, explain what each extension does, show the exact commands I used, and break down what actually happens on-chain.


1. Transfer Fee Mint

Mint Address

YwkdCKSVccVGBzVFJWAf1USvYsc6LtbHz1VVUgKtAwY

🔎 Solana Explorer

https://explorer.solana.com/address/YwkdCKSVccVGBzVFJWAf1USvYsc6LtbHz1VVUgKtAwY/token-extensions?cluster=devnet

📸 Explorer View

Transfer Fee Mint


🧠 Step-by-step: What I did

1 - I created a Token-2022 mint with transfer fees enabled

spl-token --program-id TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb \
  create-token \
  --transfer-fee-basis-points 100 \
  --transfer-fee-maximum-fee 1000000 \
  --decimals 6

2 - What this command actually does on-chain

Creates a new mint under the Token-2022 program
Attaches the TransferFeeConfig extension at initialization
Stores fee rules directly inside mint state

3 - Fee configuration explained

100 basis points → 1% fee per transfer
maximum fee = 1,000,000 → caps large transfers
decimals = 6 → token precision


💡 When would you use this?

Transfer fees are useful when every transfer should contribute to a treasury:

  • Creator royalties
  • DAO treasuries
  • Stablecoin protocol fees
  • Community token economies

The key idea is that the fee is enforced at the protocol level, not in application logic.


2. Interest-Bearing Mint

Mint Address

7LaHSfWwPprbaQAYJnFePpVxT5brDAMtNP1hFL4UbkEt

🔎 Solana Explorer

https://explorer.solana.com/address/7LaHSfWwPprbaQAYJnFePpVxT5brDAMtNP1hFL4UbkEt/token-extensions?cluster=devnet
📸 Explorer View

Interest-Bearing Mint

🧠 Step-by-step: What I did

1 - I created an interest-bearing Token-2022 mint

spl-token create-token \
  --program-id TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb \
  --decimals 6 \
  --interest-rate 5000

2 - What happens on-chain

  • The mint stores an InterestBearingConfig extension
  • The interest rate is embedded into mint metadata
  • A timestamp is recorded for rate calculation

3 - Important behavior

This is critical:

👉 The interest-bearing extension does NOT mint new tokens.

Instead:

  • Total supply remains unchanged
  • Wallets compute a displayed balance
  • Interest is applied at the UI / accounting layer

💡 Why this matters

This is useful for:

  • Savings-like token experiences
  • Yield visualization layers
  • DeFi dashboards

It separates real supply from computed value, which is a powerful design pattern.


3. Non-Transferable Mint (Soul-Bound Token)

Mint Address

2U5BgExVuYtwLV5n4LcBLNL9S2K4SpzvJaW7c7XjgvLM

🔎 Solana Explorer

https://explorer.solana.com/address/2U5BgExVuYtwLV5n4LcBLNL9S2K4SpzvJaW7c7XjgvLM/token-extensions?cluster=devnet

📸 Explorer View
Non-Transferable Mint

🧠 Step-by-step: What I did

1 - I created a non-transferable mint

spl-token create-token --program-2022 --enable-non-transferable

2 - I minted tokens normally

At this stage:

  • Mint works normally
  • Token account is created
  • Balance is assigned

3 - I attempted a transfer

spl-token transfer $MINT 1 $RECIPIENT --allow-unfunded-recipient

4 - The transfer failed on-chain

Program log: Instruction: TransferChecked
Program log: Transfer is disabled for this mint
Error: custom program error: 0x25

👉 Key insight:

The restriction is enforced by the Token-2022 program itself, not the frontend.

💡 Use cases

Non-transferable tokens are ideal for:

  • Identity systems
  • Certifications
  • Membership passes
  • Academic credentials
  • Reputation systems

They represent ownership that cannot be traded.


📊 Comparison of Extensions

Comparison of Extensions


🧠 What I Learned

Working with Token-2022 changed how I think about token design.

Before this challenge, I assumed advanced token behavior required custom smart contracts. Now I see that many real-world patterns—fees, yield, identity—are already available as composable extensions built into the protocol.

The key insight is that Token-2022 behaves like protocol-level middleware, allowing developers to configure behavior at mint creation instead of writing custom logic.

This makes token design more modular, expressive, and secure.

If you're learning Solana, I highly recommend experimenting with Token-2022 directly. Building these mints taught me far more than reading documentation alone.

Thanks for reading!

If this helped, feel free to connect and follow my 100 Days Of Solana journey.