• Logic Flow

Price Aggregation (Liquidity Aggregator):

aggregated_price = Aggregator.aggregatePrices(exchanges)

aggregated_price represents the final aggregated price for the desired token pair.

Aggregator is the component responsible for aggregating prices. exchanges is a list of exchanges to consider, such as Uniswap, 1inch, 0x, Sushiswap, Pancakeswap.

The Aggregator component in the liquidity aggregator exchange fetches prices from multiple decentralized exchanges (Uniswap, 1inch, 0x, Sushiswap, Pancakeswap) for a specific token pair. It combines and processes these prices to calculate the aggregated price, providing users with the best available rate across the integrated exchanges. This approach ensures users can access the most favorable rates and minimize slippage when trading their assets, enhancing liquidity management and trading experiences.

Last updated