New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

binancefy

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

binancefy

The world's largest crypto exchange trading library

unpublished
latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

The world's largest crypto exchange trading library

GitHub license · NPM Version · Downloads Stats

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.

Keywords

binance

FAQs

Package last updated on 07 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts