Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/rest/User/Account.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ exports.getAccountInformation = async function getAccountInformation(accountId)
* - {string} bizType - [Optional] Business type: DEPOSIT, WITHDRAW, TRANSFER, SUB_TRANSFER,TRADE_EXCHANGE, MARGIN_EXCHANGE, KUCOIN_BONUS.
* - {number} startAt - [Optional] Start time (milisecond)
* - {number} endAt - [Optional] End time (milisecond)
* - {number} currentPage - [Optional] Current request page
* - {number} pageSize - [Optional] Number of results per request. Minimum is 10, maximum is 500.
* @return {Object} { code, success, data }
*/
exports.getAccountLedgers = async function getAccountLedgers(
Expand All @@ -98,6 +100,8 @@ exports.getAccountLedgers = async function getAccountLedgers(
bizType,
startAt,
endAt,
currentPage,
pageSize,
} = {}
) {
/*
Expand Down Expand Up @@ -165,6 +169,8 @@ exports.getAccountLedgers = async function getAccountLedgers(
bizType,
startAt,
endAt,
currentPage,
pageSize,
});
};

Expand Down