1.0.0 • Published 6 years ago

bex-price v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

BEX Price (USD)

Fetches BEX price from BitShares via CryptoFresh

Installation

npm i bex-price --save

Import

import getBexPrice from 'bex-price'

Usage

Simple usage:

  getBexPrice().then((r) => {
    console.log(r);
  }).catch(function(error) {
    console.error(error);
  });

Usage with options:

  const opts = {
    api: 'https://cryptofresh.com/api/asset/markets?asset=',
    bridge: 'BTS',
    token: 'BEX'
  };
  getBexPrice('USD', opts).then((r) => {
    console.log(r);
  }).catch(function(error) {
    console.error(error);
  });

license

MIT