UNPKG

@hackape/tardis-dev

Version:

Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js

16 lines 553 B
import { Filter } from '../types'; import { RealTimeFeedBase } from './realtimefeed'; export declare class DeltaRealTimeFeed extends RealTimeFeedBase { protected readonly wssURL = "wss://api.delta.exchange:2096"; protected mapToSubscribeMessages(filters: Filter<string>[]): { type: string; payload: { channels: { name: string; symbols: string[] | undefined; }[]; }; }[]; protected messageIsError(message: any): boolean; } //# sourceMappingURL=delta.d.ts.map