UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

10 lines (8 loc) 341 B
import { ClientOptions } from "../ClientOptions"; import { HuobiBase } from "./HuobiBase"; export class HuobiSwapsClient extends HuobiBase { constructor({ wssPath = "wss://api.hbdm.com/swap-ws", watcherMs }: ClientOptions = {}) { super({ name: "Huobi Swaps", wssPath, watcherMs }); this.hasLevel2Updates = true; } }