(symbol: string, params: Dict = {})
| 5192 | } |
| 5193 | |
| 5194 | async deliveryUserTrades(symbol: string, params: Dict = {}) { |
| 5195 | params.symbol = symbol; |
| 5196 | return await this.privateDeliveryRequest('v1/userTrades', params); |
| 5197 | } |
| 5198 | |
| 5199 | async deliveryCommissionRate(symbol: string, params: Dict = {}) { |
| 5200 | if (symbol) params.symbol = symbol; |
nothing calls this directly
no test coverage detected