Skip to content

Stable Release

Compare
Choose a tag to compare
@jaggedsoft jaggedsoft released this 29 Aug 17:36
· 439 commits to master since this release
3a3b73e

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");
});