You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {string} params.order_list_id Order list identifier. If omitted, it will be generated by the system upon order list creation. Must be equal to client_order_id of the first order in the request.
599
599
* @param {string} params.contingency_type Order list type.
* @param {string[]} [params.tx_ids] Optional. List of transaction identifiers to query
84
84
* @param {TRANSACTION_TYPE[]} [params.transaction_types] Optional. List of types to query. valid types are: 'DEPOSIT', 'WITHDRAW', 'TRANSFER' and 'SWAP'
@@ -92,6 +92,7 @@ export class WalletClient extends AuthClient {
92
92
* @param {SORT} [params.sort] Optional. Sort direction. 'ASC' or 'DESC'. Default is 'DESC'
93
93
* @param {number} [params.limit] Optional. Transactions per query. Defaul is 100. Max is 1000
94
94
* @param {number} [params.offset] Optional. Default is 0. Max is 100000
95
+
* @param {Boolean} [params.group_transactions] Flag indicating whether the returned transactions will be parts of a single operation. Default is false
95
96
* @return A promise that resolves with a list of transactions
96
97
*/
97
98
getTransactions(params: {
@@ -108,6 +109,7 @@ export class WalletClient extends AuthClient {
0 commit comments