Meta Aggregation API serves as a wrapper for multiple DEX aggregators(Routers) and finds the best price and route for token swap orders between quotes from supported routers. API provides a unified interface wrapping up differences between underlying DEX aggregators.
- 1inch v5
- 0x
- Paraswap
- Kyberswap
- Openocean
ENV Dependencies:
- Python 3.10
- pip
to run:
pip install -r requirements.txt
python -m meta_aggregation_api
You can start the project with docker using this command:
docker-compose -f deploy/docker-compose.yml --project-directory . up --build
This command exposes the web application on port 8000, mounts current directory and enables autoreload.
API is build using Fast API framework, the request processing consists of VIEW (API routes) - SERVICE - PROVIDERS route, where one request could be serviced by one provider (if selected) or many with response processing and collapsing logic developed in Service layer.
$ tree -d meta_aggregation_api
├── clients
│ └── blockchain # web3 client
├── config # app configuration defenitions
├── models # models used
├── providers # dex aggregators providers logic
├── rest_api
│ ├── middlewares
│ └── routes # API routes
├── services
├── tests # tests
└── utils
Routes representing user's actions (request price, quote, gas) are routes and
imported
via create_app.py. We are using FastAPI Framework, which is based on
Starlette/ASGI.
FastAPI provides automatic documentation (Swagger) and validation of requests/responses.
Available at
API root, so after starting it via python -m meta_aggregation_api
you can access it
at http://localhost:8000/docs.
As API operates as aggregation proxy for DEX aggregators, there is logic of requests chaining and response processing in Service layer. Service layer is represented by services module.
- chains.py module allows us to build chains metadata config object used in other services.
- meta_aggregation_service.py module contains logic of users requests processing and against providers responses and collapsing those.
- gas_service.py module contains logic processing requests for gas price and gas estimation.
Services are imported in create_app.py and used in API routes. They're routing requests to externals providers such as Web3(Blockchain Nodes), DEX Guru Public API, and DEX Aggregators. Calculating the best bargain across aggregators supported and returning results to user via API Layer.
Services also using DEX Guru SDK https://github.com/dex-guru/dg-sdk-python to resolve prices/chains from DEX Guru Public API.
Clients are used to communicate with external providers. Clients are represented by clients module:
-
blockchain module contains logic of communication with blockchain nodes via Web3.
-
apm_client.py module contains logic of communication with DEX Guru Public API.
-
providers module contains logic of communication with DEX Aggregators.
Clients are imported in create_app.py and used in Service layer.
We would be happy to have contributors onboard. No contribution is to small no matter what it is, it could be adding of support for another provider, bug fixes, new features or whatever. You can also make API better by Opening issues or providing additional details on Existing issues.
Provider's config is a JSON with provider's name, display name and supported chains. Every chain is an object with spender address for market order and limit order.
If provider doesn't support one of order types, then this spender address for this order type should be null.
Config must be named config.json.
To add new provider you need to create a new module in providers_clients folder module, create a class that inherits from BaseProvider and implement abstract methods.
Providers defining getting price, quote, limit orders, ets interfaces for specific Provider (DEX aggregator). All provider specific logic should be implemented there.
Providers classes are expected to handle errors as well.
To have the same provider name in all places, add this to the body of your class.
with open(Path(__file__).parent / 'config.json') as f:
PROVIDER_NAME = ujson.load(f)['name']
3. Add Provider class to init.py dict
We have a storage of all provider classes
As there is a dependency on support for chain on DEX Guru Public API it's limited by chains returned by https://api.dev.dex.guru/v1/chain endpoint.
pytest .
Thanks goes to these wonderful people ❤:
This project is licensed under the terms of the MIT license.