Transferred Last Endpoints to Shared

This commit is contained in:
CryptoCompiler
2021-01-22 09:55:40 +00:00
committed by GitHub
parent 90ea970bd4
commit e99dd756a0

View File

@@ -67,33 +67,6 @@ export class InverseClient extends SharedEndpoints {
return this.requestWrapper.get('v2/public/trading-records', params);
}
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;
from?: number;
limit?: number;
start_time?: number;
end_time?: number;
}): GenericAPIResponse {
return this.requestWrapper.get('v2/public/liq-records', params);
}
getMarkPriceKline(params: {
symbol: string;
interval: string;