(params: Dict = {})
| 5122 | } |
| 5123 | |
| 5124 | async deliveryPrices(params: Dict = {}) { |
| 5125 | const data = await this.publicDeliveryRequest('v1/ticker/price', params); |
| 5126 | return data.reduce((out, i) => ((out[i.symbol] = i.price), out), {}); |
| 5127 | } |
| 5128 | |
| 5129 | async deliveryDaily(symbol?: string, params: Dict = {}) { |
| 5130 | if (symbol) params.symbol = symbol; |
nothing calls this directly
no test coverage detected