Eagle Protocol Micro Services
The Aggregator Service provides an API endpoint that returns a quotation for a token swap. It calculates the best route to exchange tokens using graph search, based on the data collected by the pool explorer service, which is prioritized based on available liquidity in USD. It performs price impact calculations off-chain based on the collected data in order to find the best deal for the user
The Pool Explorer Service makes sure that our system has all the necessary information from the integrated AMMs on each chain. Accomplishing this in two ways: it subscribes to listen to the pool contract of all the pairs of the AMMs that have been integrated and it updates token reserves of that pool in case of any swap event that it fetches and it gets the pool data from the subgraph of AMMs, and queries the subgraph to get all pairs and their reserve of all the supported AMMs.
The Token Provider Service keeps the token list up to date, whenever there is any pool creation event detected by the pool explorer service then token service checks whether there is any new token that needs to be added to the token list and adds new token if it is not present in the token list already. It also collects and stores USD price data for all tokens that are emitted by the aggregator service.
The User Service keeps track of user balances and transactions, provides an api that is used by frontend user interface to get user swap transaction status
The Relayer Service listens to swappedIn event on all supported chains, it queries wormhole guardian network to get VAA for any swapIn transaction and then it calls swapOut on the target chain
Finally, the Message Broker handles the communication between the services.
Last updated