Technical Overview & API
Last updated
Fluxion Network provides a decentralized exchange infrastructure built on automated market maker (AMM) hybrid with limit order architecture.
The protocol is compatible with Uniswap-style liquidity pools and includes both V2 and V3 style implementations.
This section documents the core contracts and APIs developers can interact with.
Fluxion AMM consists of the following components:
Factory contracts — deploy and register liquidity pools
Pool contracts — manage liquidity and swaps
Router contracts — user entry point for swaps and liquidity
Position manager — NFT-based liquidity positions (V3)
Quoter — price quoting without executing swaps
About Fluxion limit order please view this page
The protocol is organized into the following modules.
FactoryRegistry
PoolFactory
PoolImplementation
PoolFees
Router
These contracts implement the classic constant-product liquidity pool design.
Factory
SwapRouter
QuoterV2
PositionManager
WETH helper contract
These modules enable concentrated liquidity and advanced routing.
Developers typically interact with the following contracts:
Router
Swap tokens
Factory
Create pools
Quoter
Simulate swaps
PositionManager
Manage liquidity positions
Detailed contract interfaces are documented in the pages below.
Last updated