Skip to content

Commit

Permalink
chore(): remove redundant methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagosiebler committed Sep 13, 2024
1 parent 643a31b commit 8c60a03
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 55 deletions.
11 changes: 0 additions & 11 deletions src/CBAdvancedTradeClient.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosRequestConfig } from 'axios';
import { nanoid } from 'nanoid';

import { BaseRestClient } from './lib/BaseRestClient.js';
import {
Expand Down Expand Up @@ -72,16 +71,6 @@ export class CBAdvancedTradeClient extends BaseRestClient {
return REST_CLIENT_TYPE_ENUM.advancedTrade;
}

/**
*
* Misc Utility Methods
*
*/

generateNewOrderID(): string {
return nanoid(32);
}

/**
*
* Account Endpoints
Expand Down
11 changes: 0 additions & 11 deletions src/CBAppClient.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosRequestConfig } from 'axios';
import { nanoid } from 'nanoid';

import { BaseRestClient } from './lib/BaseRestClient.js';
import {
Expand Down Expand Up @@ -38,16 +37,6 @@ export class CBAppClient extends BaseRestClient {
return REST_CLIENT_TYPE_ENUM.coinbaseApp;
}

/**
*
* Misc Utility Methods
*
*/

generateNewOrderID(): string {
return nanoid(32);
}

/**
*
* Account Endpoints
Expand Down
11 changes: 0 additions & 11 deletions src/CBExchangeClient.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosRequestConfig } from 'axios';
import { nanoid } from 'nanoid';

import { BaseRestClient } from './lib/BaseRestClient.js';
import {
Expand Down Expand Up @@ -56,16 +55,6 @@ export class CBExchangeClient extends BaseRestClient {
return REST_CLIENT_TYPE_ENUM.exchange;
}

/**
*
* Misc Utility Methods
*
*/

generateNewOrderID(): string {
return nanoid(32);
}

/**
*
* Accounts Endpoints
Expand Down
11 changes: 0 additions & 11 deletions src/CBInternationalClient.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosRequestConfig } from 'axios';
import { nanoid } from 'nanoid';

import { BaseRestClient } from './lib/BaseRestClient.js';
import {
Expand Down Expand Up @@ -41,16 +40,6 @@ export class CBInternationalClient extends BaseRestClient {
return REST_CLIENT_TYPE_ENUM.international;
}

/**
*
* Misc Utility Methods
*
*/

generateNewOrderID(): string {
return nanoid(32);
}

/**
*
* Assets Endpoints
Expand Down
11 changes: 0 additions & 11 deletions src/CBPrimeClient.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosRequestConfig } from 'axios';
import { nanoid } from 'nanoid';

import { BaseRestClient } from './lib/BaseRestClient.js';
import {
Expand Down Expand Up @@ -51,16 +50,6 @@ export class CBPrimeClient extends BaseRestClient {
return REST_CLIENT_TYPE_ENUM.prime;
}

/**
*
* Misc Utility Methods
*
*/

generateNewOrderID(): string {
return nanoid(32);
}

/**
*
* Allocation Endpoints
Expand Down

0 comments on commit 8c60a03

Please sign in to comment.