Overview
The 1inch Fusion SDK supports token swaps across 13 EVM-compatible blockchain networks. Each network has its own set of resolvers, liquidity sources, and characteristics that may affect your swap execution.Supported networks
The SDK uses theNetworkEnum to specify which network to operate on:
Ethereum
Chain ID: 1Network:
NetworkEnum.ETHEREUMThe largest and most liquid network with the best resolver competitionPolygon
Chain ID: 137Network:
NetworkEnum.POLYGONLow gas fees with good liquidity for major token pairsBNB Chain
Chain ID: 56Network:
NetworkEnum.BINANCEPopular for DeFi with competitive liquidity and low feesArbitrum
Chain ID: 42161Network:
NetworkEnum.ARBITRUMEthereum L2 with significantly lower gas costsOptimism
Chain ID: 10Network:
NetworkEnum.OPTIMISMEthereum L2 optimized for fast, cheap transactionsBase
Chain ID: 8453Network:
NetworkEnum.COINBASECoinbase’s L2 network built on Optimism stackAvalanche
Chain ID: 43114Network:
NetworkEnum.AVALANCHEHigh-throughput chain with sub-second finalityzkSync Era
Chain ID: 324Network:
NetworkEnum.ZKSYNCZK-rollup L2 with enhanced security and privacyGnosis
Chain ID: 100Network:
NetworkEnum.GNOSISEthereum sidechain focused on stable paymentsFantom
Chain ID: 250Network:
NetworkEnum.FANTOMFast, low-cost network popular for DeFiLinea
Chain ID: 59144Network:
NetworkEnum.LINEAConsenSys zkEVM L2 networkSonic
Chain ID: 146Network:
NetworkEnum.SONICHigh-performance blockchain networkUnichain
Chain ID: 130Network:
NetworkEnum.UNICHAINUniswap’s dedicated L2 networkNetwork configuration
Configure the SDK for your desired network:Network-specific considerations
Native token addresses
Each network has a different native token (ETH, BNB, MATIC, etc.). The SDK uses a special address to represent native tokens:- Ethereum
- BNB Chain
- Polygon
Gas costs
Gas costs vary significantly between networks and affect auction pricing:| Network | Avg Gas Cost | Speed | Notes |
|---|---|---|---|
| Ethereum | High (20-100+ gwei) | 12s blocks | Highest liquidity, highest costs |
| Polygon | Very Low | 2s blocks | Very cheap, good liquidity |
| BNB Chain | Low (3-5 gwei) | 3s blocks | Balanced cost/liquidity |
| Arbitrum | Low | Sub-second | L2 benefits, growing liquidity |
| Optimism | Low | Sub-second | L2 benefits, good liquidity |
| Base | Low | Sub-second | Newer, growing ecosystem |
| Avalanche | Low (25 nAVAX) | Sub-second | Fast, low cost |
| zkSync | Low | Sub-second | ZK-rollup benefits |
Gas costs are automatically factored into auction pricing. Higher gas networks may have slightly worse effective rates to compensate resolvers.
Liquidity and execution
Network liquidity affects execution quality:- High liquidity
- Medium liquidity
- Growing liquidity
Networks: Ethereum, BNB Chain, Polygon
- More resolvers active
- Better execution rates
- Faster fills
- Recommended for large swaps
RPC provider setup
Each network requires its own RPC provider:Multi-network support
For applications supporting multiple networks:Network selection best practices
Consider liquidity
Choose networks with good liquidity for your token pair. Check active orders on your target network before placing large swaps.
Factor in gas costs
For small swaps, L2s and sidechains may provide better net value after gas costs.
Check resolver activity
More active resolvers mean better execution. Ethereum typically has the most resolver competition.
Network contract addresses
The 1inch Limit Order V4 contract is deployed at the same address across all networks:Next steps
Quickstart
Get started with your first swap
Native token swaps
Learn about network-specific native tokens
Configuration
Complete configuration reference
Placing orders
Step-by-step order creation guide