For the complete documentation index, see llms.txt. This page is also available as Markdown.

Networks & Assets

What is live on Solana today, and the networks and assets your users can reach from it.

Solana is a spoke network in the SODAX System. User funds stay on Solana; the hub (Sonic) coordinates execution, and solvers settle against deep native liquidity on each network rather than isolated bridge pools.

There are two asset lists to keep straight, and the difference is the point of SODAX:

  • Assets on Solana: the 21 assets that live on Solana itself (July 2026). These are what your users hold, send, and receive on Solana; the entry and exit points of any Solana-side flow.

  • Assets across the SODAX System: 137 assets across all supported networks (July 2026). Every one of them is a valid swap destination or collateral source for your Solana users, because every SODAX action is cross-network by default.

A user holding SOL is not limited to the 21. They can swap SOL into ETH on Ethereum, USDC on Base, BTC on Bitcoin, or any other listed asset on any network, in one signed transaction. The 21 on-Solana assets are simply where those journeys start and end on your side.

Assets on Solana

As of July 2026, 21 assets are live for swaps on Solana:

Category
Assets

Core & stablecoins

SOL, USDC, USDT, bnUSD, SODA, WBTC (Wormhole)

Solana ecosystem

BONK, JUP, RAY, PYTH, JTO

Liquid staking

JitoSOL, mSOL

Tokenized equities (xStocks)

TSLAx, NVDAx, GOOGLx, COINx, MSTRx, CRCLx, SPYx, QQQx

Six of these are also live in the Money Market for supply, borrow, repay, and withdraw: SOL, USDC, USDT, bnUSD, SODA, and JitoSOL.

The list grows continuously. The complete, always-current view is the asset directory, which reads the same configuration the SDK uses. Hub vault addresses per asset are listed in Swaps: Compatible Assets.

Assets your users can reach

From a Solana-sourced action, users can trade, lend, and borrow against the full 137-asset directory across every SODAX-supported network:

  • EVM: Sonic (hub), Ethereum, Arbitrum, Base, BSC, Optimism, Polygon, Avalanche, HyperEVM, Lightlink, Redbelly, Kaia, Hedera

  • Non-EVM: Solana, Sui, Stellar, ICON, Injective, NEAR, Stacks, Bitcoin

Chain identifiers come from ChainKeys.* in the SDK (ChainKeys.SOLANA_MAINNET = 'solana'), and the live chain list from sodax.config.getSupportedSpokeChains(). Prefer the config call over hard-coding: networks are added over time.

Asset discovery in code

Never hard-code mints or asset lists; read them from the SDK config at runtime:


Last updated