mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-10 09:26:22 +00:00
docs
This commit is contained in:
parent
55284c0549
commit
f7a405a2e6
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: FAQ
|
||||
nav_order: 9
|
||||
nav_order: 11
|
||||
---
|
||||
|
||||
### I occasionally get a NullReferenceException, what's wrong?
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Glossary
|
||||
nav_order: 8
|
||||
nav_order: 10
|
||||
---
|
||||
|
||||
|Definition|Synonyms|Meaning|
|
||||
|
@ -1 +1,6 @@
|
||||
TODO steps for creating a new implementation
|
||||
---
|
||||
title: Creating an implementation
|
||||
nav_order: 8
|
||||
---
|
||||
|
||||
TODO
|
@ -3,6 +3,14 @@ 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
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: Migrate v4 to v5
|
||||
nav_order: 7
|
||||
nav_order: 9
|
||||
---
|
||||
|
||||
Changes from 4.x to 5.x:
|
||||
|
@ -1,4 +1,4 @@
|
||||
---
|
||||
title: Rate limiting
|
||||
nav_order: 6
|
||||
nav_order: 7
|
||||
---
|
||||
|
Loading…
x
Reference in New Issue
Block a user