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 {boolean} [params.include_fee] Optional. If true then the total spent amount includes fees. Default false
908
910
* @param {boolean} [params.auto_commit] Optional. If false then you should commit or rollback transaction in an hour. Used in two phase commit schema. Default true
@@ -1112,6 +1115,8 @@ Accepted values: wallet, spot. Must not be the same as source
1112
1115
* @param {TRANSACTION_TYPE[]} [params.types] Optional. List of types to query. valid types are: 'DEPOSIT', 'WITHDRAW', 'TRANSFER' and 'SWAP'
1113
1116
* @param {TRANSACTION_SUBTYPE[]} [params.subtypes] Optional. List of subtypes to query. valid subtypes are: 'UNCLASSIFIED', 'BLOCKCHAIN', 'AIRDROP', 'AFFILIATE', 'STAKING', 'BUY_CRYPTO', 'OFFCHAIN', 'FIAT', 'SUB_ACCOUNT', 'WALLET_TO_SPOT', 'SPOT_TO_WALLET', 'WALLET_TO_DERIVATIVES', 'DERIVATIVES_TO_WALLET', 'CHAIN_SWITCH_FROM', 'CHAIN_SWITCH_TO' and 'INSTANT_EXCHANGE'
1114
1117
* @param {TRANSACTION_STATUS[]} [params.statuses] Optional. List of statuses to query. valid subtypes are: 'CREATED', 'PENDING', 'FAILED', 'SUCCESS' and 'ROLLED_BACK'
1118
+
* @param {string[]} [params.currencies] Optional. List of currencies of the transactions
1119
+
* @param {string[]} [params.networks] Optional. List of network codes
1115
1120
* @param {SORT_BY} [params.order_by] Optional. Defines the sorting type.'created_at' or 'id'. Default is 'created_at'
1116
1121
* @param {string} [params.from] Optional. Interval initial value when ordering by 'created_at'. As Datetime
1117
1122
* @param {string} [params.till] Optional. Interval end value when ordering by 'created_at'. As Datetime
@@ -1120,6 +1125,7 @@ Accepted values: wallet, spot. Must not be the same as source
1120
1125
* @param {string} [params.sort] Optional. Sort direction. 'ASC' or 'DESC'. Default is 'DESC'.
1121
1126
* @param {number} [params.limit] Optional. Transactions per query. Defaul is 100. Max is 1000
1122
1127
* @param {number} [params.offset] Optional. Default is 0. Max is 100000
1128
+
* @param {Boolean} [params.group_transactions] Optional. Flag indicating whether the returned transactions will be parts of a single operation
1123
1129
*
1124
1130
* @return A list of transactions
1125
1131
*/
@@ -1128,14 +1134,17 @@ Accepted values: wallet, spot. Must not be the same as source
0 commit comments