Beyond EVM: Accepting Payments on TON, Solana, TRON, and More
TL;DR: T402 supports 10 non-EVM blockchains alongside EVM chains. Each chain has unique characteristics: TON for Telegram users, Solana for speed, TRON for global USDT volume, and more. The T402 SDK provides a unified API across all chains.
Why Non-EVM Chains Matter
While EVM chains dominate DeFi, some of the largest stablecoin user bases exist on non-EVM chains. TRON processes more USDT volume than any other chain. TON has direct access to 950M+ Telegram users. Solana offers sub-second finality for high-frequency applications.
By supporting 10 non-EVM chains, T402 enables you to reach users wherever they are, without building separate integrations for each blockchain's unique architecture.
Supported Non-EVM Chains
TON (Telegram)
ton:mainnet
Key Features
Solana
solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Key Features
TRON
tron:mainnet
Key Features
NEAR
near:mainnet
Key Features
Aptos
aptos:1
Key Features
Tezos
tezos:NetXdQprcVkpaWU
Key Features
Polkadot Asset Hub
polkadot:68d56f15...
Key Features
Stacks
stacks:1
Key Features
Unified API Across Chains
Despite different signature schemes, token standards, and transaction formats, T402 provides a consistent API. The same code structure works whether you're accepting TON Jettons or Solana SPL tokens:
import { ExactTonServer } from "@t402/ton/exact/server";
import { ExactSvmServer } from "@t402/svm/exact/server";
import { ExactTronServer } from "@t402/tron/exact/server";
// Same pattern for all chains
app.use(paymentMiddleware({
"GET /api/data": {
price: "$0.10",
schemes: [
// TON for Telegram users
new ExactTonServer({
network: "ton:mainnet",
payTo: "EQ...",
}),
// Solana for speed
new ExactSvmServer({
network: "solana:mainnet",
payTo: "8GGt...",
}),
// TRON for global reach
new ExactTronServer({
network: "tron:mainnet",
payTo: "TT1M...",
}),
],
},
}));Choosing the Right Chains
For Telegram Integration
TON is the clear choice. With native Telegram wallet integration and Mini Apps support, you can reach 950M+ users directly within the messaging app.
For Global USDT Users
TRON dominates global USDT transfers with $60B+ volume. Essential for reaching users in Asia, Africa, and emerging markets where TRC-20 USDT is the standard.
For High-Frequency Applications
Solana offers 400ms finality and 65,000 TPS. Perfect for trading bots, gaming micropayments, and any application requiring near-instant confirmation.
For Developer Experience
NEAR provides human-readable account names (alice.near instead of 0x...) and a JavaScript SDK. Great for onboarding developers new to blockchain.
For Bitcoin Alignment
Stacks is a Bitcoin L2 with Bitcoin finality. Reach Bitcoin maximalists who want smart contract functionality without leaving the BTC ecosystem.
Get Started
T402 SDKs provide consistent interfaces across all 44 supported chains. Start accepting payments on any chain today:
Need Help?
Join the T402 community to get help with multi-chain integration, share your projects, and stay updated on new chain support.
Join Telegram