Skip to content

Commit 599022e

Browse files
PaulHerklos
authored andcommitted
Add ChangeNow
Signed-off-by: Paul <paul@drakkar.software>
1 parent c1691a1 commit 599022e

2 files changed

Lines changed: 663 additions & 0 deletions

File tree

ts/src/abstract/changenow.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// -------------------------------------------------------------------------------
2+
3+
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
4+
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
5+
6+
// -------------------------------------------------------------------------------
7+
8+
import { implicitReturnType } from '../base/types.js';
9+
import { Exchange as _Exchange } from '../base/Exchange.js';
10+
11+
interface Exchange {
12+
publicGetCurrencies (params?: {}): Promise<implicitReturnType>;
13+
publicGetCurrenciesToTicker (params?: {}): Promise<implicitReturnType>;
14+
publicGetMinAmountFromTo (params?: {}): Promise<implicitReturnType>;
15+
publicGetExchangeAmountAmountFromTo (params?: {}): Promise<implicitReturnType>;
16+
publicGetExchangeAmountFixedRateAmountFromTo (params?: {}): Promise<implicitReturnType>;
17+
publicGetMarketInfoAvailablePairs (params?: {}): Promise<implicitReturnType>;
18+
privateGetTransactionsApiKey (params?: {}): Promise<implicitReturnType>;
19+
privateGetTransactionsIdApiKey (params?: {}): Promise<implicitReturnType>;
20+
privateGetMarketInfoFixedRateApiKey (params?: {}): Promise<implicitReturnType>;
21+
privatePostTransactionsApiKey (params?: {}): Promise<implicitReturnType>;
22+
}
23+
abstract class Exchange extends _Exchange {}
24+
25+
export default Exchange

0 commit comments

Comments
 (0)