* Get the trade fee * @see https://developers.binance.com/docs/wallet/asset/trade-fee * @param {string} symbol (optional) * @return {promise or undefined} - omitting the callback returns a promise
(symbol?: string)
| 4129 | * @return {promise or undefined} - omitting the callback returns a promise |
| 4130 | */ |
| 4131 | async tradeFee(symbol?: string) { |
| 4132 | const params = symbol ? { symbol: symbol } : {}; |
| 4133 | return await this.privateSapiRequest('v1/asset/tradeFee', params); |
| 4134 | } |
| 4135 | |
| 4136 | /** |
| 4137 | * Fetch asset detail (minWithdrawAmount, depositStatus, withdrawFee, withdrawStatus, depositTip) |
nothing calls this directly
no test coverage detected