UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

9 lines (7 loc) 284 B
import { ClientOptions } from "../ClientOptions"; import { FtxBaseClient } from "./FtxBase"; export class FtxClient extends FtxBaseClient { constructor({ wssPath = "wss://ftx.com/ws", watcherMs }: ClientOptions = {}) { super({ name: "FTX", wssPath, watcherMs }); } }