Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Stable Release

Choose a tag to compare

@jaggedsoft jaggedsoft released this 29 Aug 17:58
· 392 commits to master since this release
cd6d98e

Add assetDetail and tradeFee functions

const Binance = require('node-binance-api');
const binance = new Binance().options("options.json");
binance.useServerTime( () => {
	binance.assetDetail((error, response) => {
		console.log(response);
	});

	binance.tradeFee((error, response) => {
		console.log(response);
	}, "BNBBTC");
});