UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

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