Update src/rest-client-v2.ts

Co-authored-by: Tiago <tiagosiebler@users.noreply.github.com>
This commit is contained in:
Sushil Sharma
2024-08-20 17:50:46 +04:00
committed by GitHub
parent 4cd1067d61
commit 96a78e8c96

View File

@@ -158,7 +158,8 @@ export class RestClientV2 extends BaseRestClient {
return this.getPrivate(`/api/v2/account/bot-assets`, params); return this.getPrivate(`/api/v2/account/bot-assets`, params);
} }
getAssetsOverview(): Promise<APIResponse<any>> { /** Get assets overview */
getBalances(): Promise<APIResponse<any>> {
return this.getPrivate(`/api/v2/account/all-account-balance`); return this.getPrivate(`/api/v2/account/all-account-balance`);
} }