tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
14 lines • 540 B
TypeScript
import { Filter } from '../types.ts';
import { RealTimeFeedBase } from './realtimefeed.ts';
export declare class PhemexRealTimeFeed extends RealTimeFeedBase {
protected readonly wssURL = "wss://ws.phemex.com/";
protected readonly throttleSubscribeMS = 100;
protected readonly channelsMap: any;
protected mapToSubscribeMessages(filters: Filter<string>[]): {
id: number;
method: any;
params: string[];
}[];
protected messageIsError(message: any): boolean;
}
//# sourceMappingURL=phemex.d.ts.map