Interface OrderBookRealTimeClientOptions

Orderbook Client Options

interface OrderBookRealTimeClientOptions {
    apiKey?: string;
    sandbox?: boolean;
    baseRestApiURL?: string;
    baseWebSocketURL?: string;
}

Properties

apiKey?: string

Optionally provide an apiKey for increased rate limiting

sandbox?: boolean

Controls whether the production or sandbox endpoints will be used

baseRestApiURL?: string

Optionally provide a custom url to use when making IDEX REST API requests.

  • Will override the sandbox option when given.
baseWebSocketURL?: string

Optionally provide a custom WebSocket API URL to use when connecting to the IDEX WebSocket API.

  • Will override the sandbox option when given.