crypto-janitor
Version:
The Crypto Janitor provides a simple interface for fetching and cleaning crypto account data.
21 lines (20 loc) • 514 B
text/typescript
import { CcxtConnection } from "../target.types";
import { Kucoin } from ".";
/**
* A Bittrex Implementation of ccxtConnection
*/
export default class Bittrex extends CcxtConnection {
accounts: any;
/**
* Create Bittrex instance
* @param {any} creds - Bittrex API creds
*/
constructor(creds: any) {
super("bittrex", creds, {
rateLimit: 500,
requireSymbols: false,
requireUsdValuation: true,
fallback: Kucoin,
});
}
}