* Get the balance data * @see https://developers.binance.com/docs/binance-spot-api-docs/testnet/rest-api/account-endpoints#account-information-user_data * @return {promise or undefined} - omitting the callback returns a promise
(params: Dict = {})
| 4157 | * @return {promise or undefined} - omitting the callback returns a promise |
| 4158 | */ |
| 4159 | async balance(params: Dict = {}) { |
| 4160 | const data = await this.privateSpotRequest('v3/account', params); |
| 4161 | return this.balanceData(data); |
| 4162 | } |
| 4163 | |
| 4164 | /** |
| 4165 | * Get private trades for a given symbol |
no test coverage detected