1.3.0 • Published 3 months ago

3commas v1.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

Low Level

Access 3Commas API.

import { getBot, getAllAccounts } from "3commas";

const bot = await getBot(123456789);
const accounts = await getAllAccounts(123456789);

High Level

Use 3Commas API at a high level.

import { ThreeCommas } from "3Commas";

const threeCommas = new ThreeCommas();
await threeCommas.loadAccounts();
await threeCommas.loadBots();

const bot = threeCommas.getBot(123456789);
const account = bot.account;