3commas
v1.3.0
Published
3Commas API and high level utilities.
Downloads
10
Maintainers
Readme
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;