bex-price
v1.0.0
Published
Fetches BEX price from BitShares via CryptoFresh
Downloads
4
Maintainers
Readme
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