UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

9 lines (7 loc) 307 B
import { ClientOptions } from "../ClientOptions"; import { HuobiBase } from "./HuobiBase"; export class HuobiKoreaClient extends HuobiBase { constructor({ wssPath = "wss://api-cloud.huobi.co.kr/ws", watcherMs }: ClientOptions = {}) { super({ name: "Huobi Korea", wssPath, watcherMs }); } }