From 93a0862185fd349376cf48b4c41d662ce6587718 Mon Sep 17 00:00:00 2001 From: May Date: Mon, 4 Dec 2023 11:36:32 +0700 Subject: [PATCH] feat: getSubAccountDepositRecords API --- src/rest-client-v2.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/rest-client-v2.ts b/src/rest-client-v2.ts index 042edb6..9a83899 100644 --- a/src/rest-client-v2.ts +++ b/src/rest-client-v2.ts @@ -347,9 +347,15 @@ export class RestClientV2 extends BaseRestClient { } getSpotMainSubTransferRecord(params: object): Promise> { - return this.getPrivate(`/api/v2/spot/account/sub-main-trans-record`,params,); + return this.getPrivate(`/api/v2/spot/account/sub-main-trans-record`,params); } + getSubAccountDepositRecords(params: object): Promise> { + return this.getPrivate(`/api/v2/spot/wallet/subaccount-deposit-records`,params); + } + + + /** * *