From 1c533c5d99de120a8a63df6523ba2079fc6d2733 Mon Sep 17 00:00:00 2001 From: Jkorf Date: Mon, 3 Jan 2022 12:01:08 +0100 Subject: [PATCH] Update Migration Guide.md --- Migration Guide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Migration Guide.md b/Migration Guide.md index cd7a3ab..cd65b58 100644 --- a/Migration Guide.md +++ b/Migration Guide.md @@ -1,7 +1,8 @@ Changes from 4.x to 5.x: ## Client structure -The client structure has been changed to make clients more consistent across different implementations. Where before clients could either have `client.Method()`, `client.[Api].Method()` or `client.[Api].[Topic].Method()`. This has been unified to be `client.[Api]Api.[Topic].Method()`: +The client structure has been changed to make clients more consistent across different implementations. Clients using V4 could either had `client.Method()`, `client.[Api].Method()` or `client.[Api].[Topic].Method()`. +This has been unified to be `client.[Api]Api.[Topic].Method()`: `bittrexClient.GetTickersAsync()` -> `bittrexClient.SpotApi.ExchangeData.GetTickersAsync()` `kucoinClient.Spot.GetTickersAsync()` -> `kucoinClient.SpotApi.ExchangeData.GetTickersAsync()` `binanceClient.Spot.Market.GetTickersAsync()` -> `binanceClient.SpotApi.ExchangeData.GetTickersAsync()`