UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

9 lines (7 loc) 288 B
import { ClientOptions } from "../ClientOptions"; import { HuobiBase } from "./HuobiBase"; export class HuobiClient extends HuobiBase { constructor({ wssPath = "wss://api.huobi.pro/ws", watcherMs }: ClientOptions = {}) { super({ name: "Huobi", wssPath, watcherMs }); } }