@proton/ccxt
Version:
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
19 lines (18 loc) • 994 B
TypeScript
import ripioRest from '../ripio.js';
import { Int } from '../base/types.js';
import Client from '../base/ws/Client.js';
export default class ripio extends ripioRest {
describe(): any;
watchTrades(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
handleTrade(client: Client, message: any, subscription: any): any;
watchTicker(symbol: string, params?: {}): Promise<any>;
handleTicker(client: Client, message: any, subscription: any): any;
watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise<any>;
fetchOrderBookSnapshot(client: any, subscription: any): Promise<void>;
handleOrderBook(client: Client, message: any, subscription: any): any;
handleOrderBookMessage(client: Client, message: any, orderbook: any): any;
handleDelta(bookside: any, delta: any): void;
handleDeltas(bookside: any, deltas: any): void;
ack(client: any, messageId: any): Promise<void>;
handleMessage(client: Client, message: any): any;
}