1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-11 09:56:18 +00:00
This commit is contained in:
Jkorf 2022-01-17 16:32:50 +01:00
parent 55284c0549
commit f7a405a2e6
6 changed files with 18 additions and 5 deletions

View File

@ -1,6 +1,6 @@
--- ---
title: FAQ title: FAQ
nav_order: 9 nav_order: 11
--- ---
### I occasionally get a NullReferenceException, what's wrong? ### I occasionally get a NullReferenceException, what's wrong?

View File

@ -1,6 +1,6 @@
--- ---
title: Glossary title: Glossary
nav_order: 8 nav_order: 10
--- ---
|Definition|Synonyms|Meaning| |Definition|Synonyms|Meaning|

View File

@ -1 +1,6 @@
TODO steps for creating a new implementation ---
title: Creating an implementation
nav_order: 8
---
TODO

View File

@ -3,6 +3,14 @@ title: Common interfaces
nav_order: 5 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 ## ISpotClient
TODO TODO

View File

@ -1,6 +1,6 @@
--- ---
title: Migrate v4 to v5 title: Migrate v4 to v5
nav_order: 7 nav_order: 9
--- ---
Changes from 4.x to 5.x: Changes from 4.x to 5.x:

View File

@ -1,4 +1,4 @@
--- ---
title: Rate limiting title: Rate limiting
nav_order: 6 nav_order: 7
--- ---