MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / tradeFee

Method tradeFee

src/node-binance-api.ts:4131–4134  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

privateSapiRequestMethod · 0.95

Tested by

no test coverage detected