0.1.3 • Published 5 years ago

crypto-volume v0.1.3

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
5 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

5 years ago

0.1.2

5 years ago

0.1.0

5 years ago

0.1.1

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago