The world's largest crypto exchange trading library
·
·

Status: Under Development
Installation
This is a Node.js module available through the npm registry.
Installation is done using the npm install command:
npm i binancefy
Usage
1. Getting trading symbols using cc
cc - stands for crypto-currency, a 'cc' pair consists of Base currency and Quote currency, like in BTCUSDT - BTC is Base currency and USDT is Quote currency
In most cases the Quote currency is used to find respective cc pairs.
On successful implementation, an array of objects is returned which contains the list of symbols sorted in order of decreasing volume.
1.1 crypto-currency pairs by their Quote (mainly used) *
const bfy = require('binancefy')
const getSymbols = async () => {
const symbols = await bfy.getQuote('USDT')
console.log(symbols)
}
getSymbols()
1.2 crypto-currency pairs by their Base
const bfy = require('binancefy')
const getSymbols = async () => {
const symbols = await bfy.getBase('BTC')
console.log(symbols)
}
getSymbols()
Examples
To be updated soon.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.