Added getPublicLiquidations depreciated endpoint
This commit is contained in:
@@ -72,6 +72,19 @@ export class InverseClient extends SharedEndpoints {
|
|||||||
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;
|
||||||
interval: string;
|
interval: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user