UNPKG

crypto-janitor

Version:

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

42 lines (34 loc) 1.09 kB
import { Coinbase } from "../targets"; import { getCcxtConnectionBalance, getCcxtConnectionWithdrawals, getCcxtConnectionDeposits, getCcxtConnectionOrders, getAllTransactionsSince, } from "./utils"; describe("Coinbase", () => { const creds = { apiKey: process.env.COINBASE_API_KEY, secret: process.env.COINBASE_SECRET, }; const connection = new Coinbase(creds); beforeAll(async () => { await connection.initialize(); }); it("#getBalance", async () => { await getCcxtConnectionBalance(connection); }); it("#getWithdrawals", async () => { await getCcxtConnectionWithdrawals(connection, "USD"); }); it("#getDeposits", async () => { await getCcxtConnectionDeposits(connection, "USD"); }); it("#getOrders", async () => { await getCcxtConnectionOrders(connection, "ETH"); }); it("#getAllTransaction - since 03/20/2021", async () => { const since = new Date("2021-03-20"); await getAllTransactionsSince(connection, since.getTime()); }); });