mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-09 17:06:19 +00:00
485 B
485 B
title, nav_order
title | nav_order |
---|---|
Common interfaces | 5 |
Clients have a common interface implementation to allow a shared code base to use the same functionality for different exchanges. The interface is implemented at the API
level, for example:
var binanceClient = new BinanceClient();
ISpotClient spotClient = binanceClient.SpotApi.CommonSpotClient;
IFuturesClient futuresClient = binanceClient.UsdFuturesApi.CommonFuturesClient;
ISpotClient
TODO
IFuturesClient
TODO