0.1.3 • Published 4 years ago

crypto-volume v0.1.3

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
4 years ago

crypto-volume

Get last 24 hours trade volume of all pairs.

Quick start

npx crypto-volume Binance

How to use

/* eslint-disable import/no-unresolved,no-console */
const getVolume = require('crypto-volume').default;

(async (): Promise<void> => {
  console.info(await getVolume('Binance'));
})();

API Manual

There is only one API in this library:

/**
 * Get last 24 hours trade volume of all pairs.
 *
 * @param exchange Thee exchange name
 * @returns Last 24 hours trade volume
 */
export default function getVolume(exchange: string): Promise<{ [key: string]: Volume }>;
0.1.3

4 years ago

0.1.2

4 years ago

0.1.0

4 years ago

0.1.1

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago