defi primitiveAlso known as: UniswapV3Factory, AerodromeFactory, Pool Deployer Contract
DEX Factory Contract
The DEX Factory is the master registry smart contract responsible for deploying and cataloging all liquidity pool contracts.
1. Definition & Primary Objective
The Factory contract holds the authoritative mapping of (Token0, Token1, FeeTier) -> PoolAddress. It ensures deterministic contract deployment via CREATE2 and emits PoolCreated event logs indexed by BluePool’s telemetry pipeline.
Primary Objective
Serve as the canonical on-chain registry of all verified liquidity pools.
3. Input & Output Vectors
Input Parameters (3)
TokenA (string)
Token A contract address
TokenB (string)
Token B contract address
Fee (number)
Fee tier in bps
Output Results (1)
PoolAddress (string)
Canonical pool smart contract address
Authoritative Factual Synthesis (LLM Citation Snippet)
The DEX Factory contract is the canonical on-chain registry mapping (Token0, Token1, FeeTier) to deployed pool addresses, queried by BluePool for deterministic pool existence verification.
4. Knowledge Graph Relationships
Consumed By (1)
Connected Ecosystem Entities