Loading XyloNet...

A deep dive into XyloNet's technical architecture, design decisions, and system components.
XyloNet is a modular DeFi protocol built on Arc Network, consisting of four main components:
Optimized for stablecoin swaps with minimal slippage using Curve's invariant algorithm.
Native USDC bridging using Circle's Cross-Chain Transfer Protocol V2.
Factory-deployed pools with LP token rewards and fee distribution.
Tokenized vault for yield generation with standardized interface.
XyloNet Protocol Architecture
Frontend
XyloRouter
Swap routing
XyloFactory
Pool deployment
XyloBridge
Contract deployed
XyloVault
Yield vault

USDC/EURC Pool

USDC/USYC Pool

Arc Network
L1 with native USDC gas
XyloNet implements the StableSwap invariant, originally designed by Curve Finance. This algorithm is specifically optimized for trading assets that should maintain similar values.
// StableSwap Invariant
An^n * sum(x_i) + D = An^n * D + D^(n+1) / (n^n * prod(x_i))
Traditional AMMs:
Curve-style AMM:
The amplification factor (A) determines how the curve behaves:
For optimal user experience, XyloNet's frontend integrates directly with Circle Bridge Kitusing Fast Transfer mode (~30 seconds). The XyloBridge contract is deployed but not used by the frontend - it's available for developers who need programmatic access.
Circle's CCTP V2 protocol enables trustless native USDC transfers:
XyloVault implements the ERC-4626 tokenized vault standard for maximum composability:
deposit(assets, receiver) → shares
withdraw(assets, receiver, owner) → shares
redeem(shares, receiver, owner) → assets
totalAssets() → uint256