tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
11 lines • 582 B
TypeScript
import { Filter } from '../types';
import { RealTimeFeedBase } from './realtimefeed';
export declare class BlockchainComRealTimeFeed extends RealTimeFeedBase {
protected readonly wssURL = "wss://ws.blockchain.info/mercury-gateway/v1/ws";
protected readonly originHeader = "https://exchange.blockchain.com";
protected mapToSubscribeMessages(filters: Filter<string>[]): any[];
protected messageIsError(message: any): boolean;
protected messageIsHeartbeat(msg: any): boolean;
protected onConnected(): Promise<void>;
}
//# sourceMappingURL=blockchaincom.d.ts.map