1.0.1 • Published 6 years ago

bittrex-bot v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

bittrex-bot

Build Status Coverage Status Codacy Badge

A bot class designed for trading on bittrex exchange.

Installation

npm i bittrex-bot

Bot class

const { Bot } = require("bittrex-bot");

const bot = new Bot({
  apikey: process.env.API_KEY,
  apisecret: process.env.API_SECRET
});

Overview

Each method return a promise.

  • params: coin
  • return: object
(async () => {
  const balance = await bot.getBalance("btc");
  console.log(balance);
})();
1.0.1

6 years ago

1.0.0

6 years ago