@proton/ccxt
Version:
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
31 lines (30 loc) • 1.82 kB
TypeScript
import bitvavoRest from '../bitvavo.js';
import { Int } from '../base/types.js';
import Client from '../base/ws/Client.js';
export default class bitvavo extends bitvavoRest {
describe(): any;
watchPublic(name: any, symbol: any, params?: {}): Promise<any>;
watchTicker(symbol: string, params?: {}): Promise<any>;
handleTicker(client: Client, message: any): any;
watchTrades(symbol: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
handleTrade(client: Client, message: any): void;
watchOHLCV(symbol: string, timeframe?: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
handleOHLCV(client: Client, message: any): void;
watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise<any>;
handleDelta(bookside: any, delta: any): void;
handleDeltas(bookside: any, deltas: any): void;
handleOrderBookMessage(client: Client, message: any, orderbook: any): any;
handleOrderBook(client: Client, message: any): void;
watchOrderBookSnapshot(client: any, message: any, subscription: any): Promise<any>;
handleOrderBookSnapshot(client: Client, message: any): any;
handleOrderBookSubscription(client: Client, message: any, subscription: any): void;
handleOrderBookSubscriptions(client: Client, message: any, marketIds: any): void;
watchOrders(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
watchMyTrades(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
handleOrder(client: Client, message: any): void;
handleMyTrade(client: Client, message: any): void;
handleSubscriptionStatus(client: Client, message: any): any;
authenticate(params?: {}): any;
handleAuthenticationMessage(client: Client, message: any): void;
handleMessage(client: Client, message: any): any;
}