UNPKG

crypto-janitor

Version:

The Crypto Janitor provides a simple interface for fetching and cleaning crypto account data.

23 lines 630 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const target_types_1 = require("../target.types"); const _1 = require("."); /** * A Bittrex Implementation of ccxtConnection */ class Bittrex extends target_types_1.CcxtConnection { /** * Create Bittrex instance * @param {any} creds - Bittrex API creds */ constructor(creds) { super("bittrex", creds, { rateLimit: 500, requireSymbols: false, requireUsdValuation: true, fallback: _1.Kucoin, }); } } exports.default = Bittrex; //# sourceMappingURL=bittrex.js.map