This commit is contained in:
CryptoCompiler
2021-01-22 15:46:13 +00:00
committed by GitHub
parent 62ea702f26
commit 8c4e109153

View File

@@ -116,14 +116,14 @@ export default class SharedEndpoints {
}): GenericAPIResponse { }): GenericAPIResponse {
return this.requestWrapper.get('v2/private/wallet/withdraw/list', params); return this.requestWrapper.get('v2/private/wallet/withdraw/list', params);
} }
//-------------API Data Endpoints-------------->
//-------------API Data Endpoints--------------> getServerTime(): GenericAPIResponse {
getServerTime(): GenericAPIResponse {
return this.requestWrapper.get('v2/public/time'); return this.requestWrapper.get('v2/public/time');
} }
getApiAnnouncements(): GenericAPIResponse { getApiAnnouncements(): GenericAPIResponse {
return this.requestWrapper.get('v2/public/announcement'); return this.requestWrapper.get('v2/public/announcement');
} }
} }