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

Method deliveryPrices

src/node-binance-api.ts:5124–5127  ·  view source on GitHub ↗
(params: Dict = {})

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

publicDeliveryRequestMethod · 0.95

Tested by

no test coverage detected