Added getPublicLiquidations depreciated endpoint

This commit is contained in:
CryptoCompiler
2021-01-29 14:23:22 +00:00
committed by GitHub
parent 0ce6c97a1f
commit 13a5fc70fa

View File

@@ -71,6 +71,19 @@ export class InverseClient extends SharedEndpoints {
}): GenericAPIResponse { }): GenericAPIResponse {
return this.requestWrapper.get('v2/public/trading-records', params); return this.requestWrapper.get('v2/public/trading-records', params);
} }
/**
* @deprecated use getLiquidations() instead
*/
getPublicLiquidations(params: {
symbol: string;
from?: number;
limit?: number;
start_time?: number;
end_time?: number;
}): GenericAPIResponse {
return this.getLiquidations(params);
}
getMarkPriceKline(params: { getMarkPriceKline(params: {
symbol: string; symbol: string;