Skip to content

Commit

Permalink
withdraw → withdrawal
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor authored Aug 23, 2018
1 parent 32d850c commit 1fca93e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ccxt.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ declare module 'ccxt' {
timestamp: number;
datetime: string;
address: string;
type: "deposit" | "withdraw";
type: "deposit" | "withdrawal";
amount: number;
currency: string;
status: "pending" | "ok";
Expand Down Expand Up @@ -298,7 +298,7 @@ declare module 'ccxt' {
fetchCurrencies (params?: any): Promise<any>;
fetchTransactions (currency?: string, since?: number, limit?: number, params?: {}): Promise<Transaction[]>;
fetchDeposits (currency?: string, since?: number, limit?: number, params?: {}): Promise<Transaction[]>;
fetchWithdraws (currency?: string, since?: number, limit?: number, params?: {}): Promise<Transaction[]>;
fetchWithdrawals (currency?: string, since?: number, limit?: number, params?: {}): Promise<Transaction[]>;
cancelOrder (id: string, symbol?: string, params?: {}): Promise<any>;
createDepositAddress (currency: string, params?: {}): Promise<any>;
fetchDepositAddress (currency: string, params?: {}): Promise<any>;
Expand Down

0 comments on commit 1fca93e

Please sign in to comment.