BULLGAINBULLGAIN

Année de lancement: 2019
Marchés: 0
Paires: 0
Actifs: 0

Réseaux sociaux

Volume par marché
MarchéVolumeVolume en USD%
1-0 de 0
Utilisation de la bibliothèque Coinsamba
Utilisez la bibliothèque Coinsamba pour obtenir ces données dans votre système

1. Sélectionnez votre gestionnaire de paquets et installez la bibliothèque

npm install @coinsamba/js-exchanges-connector

2. Importez la bibliothèque

import { bullgain } from '@coinsamba/js-exchanges-connector'

3. Utilisez les méthodes disponibles

const exchange = new bullgain();

// check if this method is available
const canGetAllTickers = exchange.hasAllTickers;

if (canGetAllTickers) {
  const tickers = await exchange.getAllTickers();

  // do something with the tickers
  console.log(tickers);
}