Money Markets

Sonic Money Market in 2026: Lending and Borrowing on Sonic

A Sonic money market lets you lend and borrow settled on Sonic. SODAX runs a cross-network money market with a Sonic Hub, 27 assets, 21 networks in 2026.

A Sonic money market is a lending and borrowing venue that settles positions on the Sonic network, letting users supply collateral and borrow assets against it. SODAX runs a cross-network money market whose settlement Hub is Sonic, so collateral posted from any connected network is accounted for on Sonic and borrowed assets can be delivered back to any network. This guide covers what a Sonic money market is, how the SODAX version works, which assets it supports, how to move funds from Ethereum to Sonic, and how to integrate it in code.

Key takeaways

  • A Sonic money market settles lending and borrowing positions on Sonic, a high-performance EVM Layer 1.
  • SODAX operates a cross-network money market with Sonic as its Hub. Collateral accounting is unified on Sonic.
  • The SODAX money market lists 27 assets for lending and borrowing as of 2026.
  • Collateral can sit on one network while the borrowed asset is delivered to another, with no manual bridging step.
  • Builders integrate supply, borrow, withdraw, and repay through the @sodax/sdk money market module.

What is a Sonic money market?

A Sonic money market is a decentralized lending protocol that records deposits and loans on the Sonic network. Sonic is a high-performance EVM Layer 1 built for DeFi, with sub-second finality and low fees. A money market on Sonic lets a lender supply an asset to earn yield and lets a borrower post collateral and draw a loan against it. Interest accrues algorithmically based on pool utilization.

Two models exist. A single-network money market keeps both the collateral and the borrowed asset on Sonic only. A cross-network money market, which is what SODAX runs, keeps the accounting Hub on Sonic while accepting collateral from many networks and delivering borrowed assets to many networks. The second model matters for builders because most users hold assets across several chains and do not want to bridge before they can lend.

Sonic money market DeFi in 2026

Sonic has become a focal point for DeFi lending in 2026 because its throughput and fee profile suit high-frequency financial operations. Aggregate DeFi activity on Sonic is tracked publicly on DeFi Llama, which lists total value locked and protocol breakdowns for the network. Multiple lending venues now operate on Sonic, ranging from single-chain forks of established money markets to cross-network execution layers.

SODAX sits in the cross-network category. As of 2026 SODAX operates across 21 networks with Sonic as the settlement Hub. The named networks include the EVM set of Sonic, Ethereum, Arbitrum, Base, BNB Chain, Optimism, Polygon, Avalanche, Hyperliquid, LightLink, Redbelly, Kaia, and Hedera, plus the non-EVM set of Solana, Sui, Stellar, ICON, Injective, NEAR, native Bitcoin, and Stacks. This is one of the broadest cross-network footprints among Sonic-settled money markets. SODAX also supports native Bitcoin, shipped 2026-05-26, and tokenized stocks through xStocks, shipped 2026-06-16, which most competing Sonic money markets do not.

How the SODAX money market works on Sonic

The SODAX money market uses a Hub and Spoke design. Sonic is the Hub, where all reserve accounting lives. Every other network is a Spoke. When a user supplies an asset on a Spoke network, SODAX relays the deposit to the Hub on Sonic, where the collateral is credited to the user's unified position. When the user borrows, the position is checked against collateral on Sonic and the borrowed asset is released on the destination network the user chooses.

This is why cross-network lending works without a separate bridge. The collateral does not physically move to Sonic as a wrapped token the user has to manage. The accounting is unified at the execution layer on Sonic, and the Solver handles delivery. A builder integrating this never touches bridge contracts directly.

Approval behavior depends on the source network. On EVM Spoke chains, supply and repay approve the Spoke asset manager contract. On Sonic itself as the Hub, supply and repay approve the user's hub router contract. Borrow and withdraw on EVM and Hub chains require no on-chain approval. This matches the SODAX SDK allowance model described below.

What assets can you supply and borrow

The SODAX cross chain money market lists 27 assets for lending and borrowing as of 2026. Assets are represented as sodaVariants, which are the Hub-side representations of the underlying tokens. The set spans stablecoins, majors, and network-native assets, including sodaUSDC, sodaUSDT, sodaETH, sodaBTC, sodaSOL, sodaS for Sonic, and sodaSUI, among others. Live supplier and borrower counts per asset are published on the SODAX money market page.

Because accounting is unified on Sonic, a single collateral position can back borrowing across the asset set. A user can supply sodaUSDC and borrow sodaETH delivered to a different network. That capital reuse is the core reason to choose a cross-network money market over a single-chain one.

How to move assets from Ethereum to Sonic

Builders frequently ask how to swap Ethereum to Sonic or how to bridge Ethereum to Sonic before using the money market. With SODAX, the answer is that you often do not need a separate step. The money market accepts collateral directly from Ethereum as a Spoke, so a user can supply an Ethereum asset and have it credited on the Sonic Hub without a manual bridge.

When a user does want the asset itself on Sonic rather than a lending position, SODAX exposes a cross-network exchange that executes the transfer as a single intent. The user states the outcome, supply an Ethereum asset and receive the equivalent on Sonic, and independent solvers source liquidity and SODAX settles it. This is available through the SODAX exchange. The same intent-based model that powers the exchange powers the money market's cross-network delivery.

How to integrate the Sonic money market

All money market operations are accessed through the moneyMarket property of a Sodax instance in the @sodax/sdk package. The reserves live on the Sonic Hub, which you can confirm through the config service.

Note on code samples

These signatures reflect the SODAX SDK as of July 2026. The SDK evolves rapidly. Always verify against the official documentation at docs.sodax.com before integrating in production.

Read the supported reserves, which are the Hub chain token addresses for the money market on Sonic:

import { Sodax, ChainKeys, type Address } from '@sodax/sdk';

const sodax = new Sodax();
await sodax.config.initialize(); // Optional: load latest dynamic config

// All supported reserves are the money market addresses on the Sonic Hub
const supportedReserves: readonly Address[] = sodax.moneyMarket.getSupportedReserves();

// Supported money market tokens for a given spoke chain
const bscTokens = sodax.moneyMarket.getSupportedTokensByChainId(ChainKeys.BSC_MAINNET);

Supplying collateral is a single call that relays the Spoke deposit to the Hub and waits for settlement:

import { type MoneyMarketSupplyParams, ChainKeys } from '@sodax/sdk';

const supplyParams: MoneyMarketSupplyParams = {
  srcChainKey: ChainKeys.BSC_MAINNET,
  srcAddress: '0x...',
  token: '0x...',
  amount: 1000n,
  action: 'supply',
};

const supplyResult = await sodax.moneyMarket.supply({
  params: supplyParams,
  walletProvider: evmWalletProvider,
});

if (supplyResult.ok) {
  const { srcChainTxHash, dstChainTxHash } = supplyResult.value;
}

Borrowing against that collateral can deliver the borrowed asset to a different network. This is the cross-network primitive:

import { type MoneyMarketBorrowParams, ChainKeys } from '@sodax/sdk';

const borrowParams: MoneyMarketBorrowParams = {
  srcChainKey: ChainKeys.BSC_MAINNET,
  srcAddress: '0x...',
  token: '0x...',
  amount: 1000n,
  action: 'borrow',
  // Deliver the borrowed asset to a different chain
  dstChainKey: ChainKeys.ETHEREUM_MAINNET,
  dstAddress: '0x...',
};

const borrowResult = await sodax.moneyMarket.borrow({
  params: borrowParams,
  walletProvider: evmWalletProvider,
});

Application teams that prefer React can use the @sodax/dapp-kit hooks useSupply(), useBorrow(), useWithdraw(), and useRepay(), plus useUserFormattedSummary() for health factor and portfolio state. The full method list and error handling model are documented in the SODAX money market SDK docs.

Sonic money market vs alternatives

The table below compares the SODAX cross-network money market on Sonic to two common alternatives builders evaluate. It calls out where alternatives are stronger.

ProtocolApproachCross-network borrowingWhere it is stronger than SODAX
SODAX Money MarketHub-and-spoke on Sonic, intents settle across networksYes, collateral and debt can sit on different networksBroadest network reach, native Bitcoin collateral, one position across networks
Aave V3Isolated markets deployed per networkNo, positions are per-networkDeepest liquidity and the most battle-tested risk parameters in DeFi
Radiant CapitalOmnichain markets over LayerZeroPartial, within its supported chainsEstablished omnichain lending with a large existing user base
Compound IIISingle-network base-asset marketsNoSimple, audited, predictable markets that are easy to model

A single-chain fork can hold deeper liquidity for one specific Sonic-native asset, which is a real advantage for a large single-asset position. A standalone bridge plus a mature lender like Aave can also be a sound choice if a team already runs that stack. SODAX wins when the requirement is cross-network collateral and delivery through one integration.

Where the Sonic DeFi ecosystem is heading

The Sonic DeFi ecosystem in 2026 is consolidating around a smaller number of execution layers that abstract network boundaries away from users. Standalone single-chain deployments still exist, but the direction of travel favors venues where a user's assets across many networks act as one balance sheet. A Sonic-settled cross-network money market fits that direction because Sonic provides the throughput to serve as a settlement Hub while users keep custody of assets wherever they hold them.

Frequently Asked Questions

What is a Sonic money market?

A Sonic money market is a decentralized lending protocol that settles deposits and loans on the Sonic network. Users supply assets to earn yield and borrow assets against posted collateral, with interest set by pool utilization. SODAX runs a cross-network version whose accounting Hub is Sonic, so collateral supplied from other networks is credited on Sonic and borrowed assets can be delivered back to other networks.

How is the SODAX money market on Sonic different from a single-chain lender?

A single-chain lender keeps both collateral and borrowed assets on Sonic only. The SODAX money market keeps its accounting Hub on Sonic but accepts collateral from 21 networks as of 2026 and can deliver borrowed assets to a network the user chooses. This removes the manual bridging step that a single-chain lender combined with a bridge would require, and it lets one collateral position back borrowing across the asset set.

Do I need to bridge from Ethereum to Sonic before lending?

No. The SODAX money market accepts collateral from Ethereum as a Spoke network, so an Ethereum asset can be supplied and credited on the Sonic Hub without a separate bridge transaction. If you want the asset itself on Sonic rather than a lending position, the SODAX cross-network exchange can execute that transfer as a single intent.

How many assets does the SODAX Sonic money market support?

The SODAX money market lists 27 assets for lending and borrowing as of 2026, represented as sodaVariants on the Sonic Hub. The set includes stablecoins, majors, and network-native assets. Live supplier and borrower counts for each asset are published on the SODAX money market page.

How do I integrate the Sonic money market in code?

Use the @sodax/sdk package and access operations through sodax.moneyMarket. The core methods are supply, borrow, withdraw, and repay, each returning a Result you check with .ok. React teams can use the @sodax/dapp-kit hooks such as useSupply() and useBorrow(). Always verify signatures against docs.sodax.com before production use.

Getting started

A Sonic money market gives builders a lending venue with the throughput to serve as a cross-network settlement Hub. The SODAX implementation turns that into unified collateral accounting across 21 networks with borrow delivery to any of them through a single SDK. Review the live reserves and integration model on the SODAX money market page and start building.