From 9f8b7d76e67b48962afa8de830f4f4095c17f118 Mon Sep 17 00:00:00 2001 From: CryptoCompiler <72892531+peepopoggers@users.noreply.github.com> Date: Fri, 29 Jan 2021 14:23:38 +0000 Subject: [PATCH] Moved getPublicLiquidations endpoint to shared --- src/shared-endpoints.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/shared-endpoints.ts b/src/shared-endpoints.ts index fbcc9d7..9840422 100644 --- a/src/shared-endpoints.ts +++ b/src/shared-endpoints.ts @@ -22,19 +22,6 @@ export default class SharedEndpoints { getSymbols(): GenericAPIResponse { return this.requestWrapper.get('v2/public/symbols'); } - - /** - * @deprecated use getLiquidations() instead - */ - getPublicLiquidations(params: { - symbol: string; - from?: number; - limit?: number; - start_time?: number; - end_time?: number; - }): GenericAPIResponse { - return this.getLiquidations(params); - } getLiquidations(params: { symbol: string;