ccxws
Version:
Websocket client for 37 cryptocurrency exchanges
10 lines (8 loc) • 340 B
text/typescript
import { ClientOptions } from "../ClientOptions";
import { HuobiBase } from "./HuobiBase";
export class HuobiFuturesClient extends HuobiBase {
constructor({ wssPath = "wss://api.hbdm.com/ws", watcherMs }: ClientOptions = {}) {
super({ name: "Huobi Futures", wssPath, watcherMs });
this.hasLevel2Updates = true;
}
}