1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-10 01:16:24 +00:00
CryptoExchange.Net/docs/Interfaces.md
2022-01-17 16:32:50 +01:00

18 lines
485 B
Markdown

---
title: Common interfaces
nav_order: 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:
```csharp
var binanceClient = new BinanceClient();
ISpotClient spotClient = binanceClient.SpotApi.CommonSpotClient;
IFuturesClient futuresClient = binanceClient.UsdFuturesApi.CommonFuturesClient;
```
## ISpotClient
TODO
## IFuturesClient
TODO