MCPcopy Create free account
hub / github.com/ExodusOSS/cryptocompare / topExchanges

Function topExchanges

index.js:115–119  ·  view source on GitHub ↗
(fsym, tsym, limit)

Source from the content-addressed store, hash-verified

113}
114
115function topExchanges (fsym, tsym, limit) {
116 let url = `${baseUrl}top/exchanges?fsym=${fsym}&tsym=${tsym}`
117 if (limit) url += `&limit=${limit}`
118 return fetchJSON(url).then(result => result.Data)
119}
120
121function topExchangesFull (fsym, tsym, limit) {
122 let url = `${baseUrl}top/exchanges/full?fsym=${fsym}&tsym=${tsym}`

Callers

nothing calls this directly

Calls 1

fetchJSONFunction · 0.85

Tested by

no test coverage detected