feat(#3): implement initial public API tests

This commit is contained in:
tiagosiebler
2021-06-24 00:26:52 +01:00
parent b4614a71bb
commit f8fcb83628
7 changed files with 3923 additions and 5 deletions

View File

@@ -22,7 +22,8 @@ export class InverseClient extends SharedEndpoints {
restClientOptions: RestClientOptions = {},
requestOptions: AxiosRequestConfig = {}
) {
super()
super();
this.requestWrapper = new RequestWrapper(
key,
secret,
@@ -53,9 +54,9 @@ export class InverseClient extends SharedEndpoints {
*/
getLatestInformation(params?: {
symbol?: string;
}): GenericAPIResponse {
}): GenericAPIResponse {
return this.getTickers(params);
}
}
/**
* @deprecated use getTrades() instead