(symbol?: string, params: Dict = {})
| 5172 | } |
| 5173 | |
| 5174 | async deliveryMarkPrice(symbol?: string, params: Dict = {}) { |
| 5175 | if (symbol) params.symbol = symbol; |
| 5176 | return await this.publicDeliveryRequest('v1/premiumIndex', params); |
| 5177 | } |
| 5178 | |
| 5179 | async deliveryTrades(symbol: string, params: Dict = {}) { |
| 5180 | params.symbol = symbol; |
nothing calls this directly
no test coverage detected