refactoring in new classes around consistency. Add spotv3 REST client

This commit is contained in:
tiagosiebler
2022-09-10 12:23:32 +01:00
parent a1c0887417
commit 3a984594dc
14 changed files with 365 additions and 95 deletions

View File

@@ -8,8 +8,8 @@ describe('Public Copy Trading REST API Endpoints', () => {
const api = new CopyTradingClient(API_KEY, API_SECRET, useLivenet);
it('getSymbolList()', async () => {
expect(await api.getSymbolList()).toMatchObject({
it('getSymbols()', async () => {
expect(await api.getSymbols()).toMatchObject({
result: {
list: expect.any(Array),
},