From 089169b7c4e736822a363f5e38de38f74cf131dc Mon Sep 17 00:00:00 2001 From: JacobPlaster Date: Wed, 4 Dec 2019 12:07:24 +0000 Subject: [PATCH] docs: re-generate --- docs/rest_v2.md | 4 ++-- docs/ws_v2.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/rest_v2.md b/docs/rest_v2.md index afe533b..c35ca8d 100644 --- a/docs/rest_v2.md +++ b/docs/rest_v2.md @@ -9,14 +9,14 @@ a websocket client and a rest interface client ## Client ```python -Client(self, API_KEY=None, API_SECRET=None, rest_host='https://api-pub.bitfinex.com/v2', ws_host='wss://api-pub.bitfinex.com/ws/2', create_event_emitter=None, logLevel='INFO', dead_man_switch=False, ws_capacity=25, *args, **kwargs) +Client(self, API_KEY=None, API_SECRET=None, rest_host='https://test.bitfinex.com/v2', ws_host='wss://test.bitfinex.com/ws/2', create_event_emitter=None, logLevel='INFO', dead_man_switch=False, ws_capacity=25, *args, **kwargs) ``` The bfx client exposes rest and websocket objects # BfxRest ```python -BfxRest(self, API_KEY, API_SECRET, host='https://api-pub.bitfinex.com/v2', loop=None, logLevel='INFO', parse_float=, *args, **kwargs) +BfxRest(self, API_KEY, API_SECRET, host='https://test.bitfinex.com/v2', loop=None, logLevel='INFO', parse_float=, *args, **kwargs) ``` BFX rest interface contains functions which are used to interact with both the public diff --git a/docs/ws_v2.md b/docs/ws_v2.md index 0a71dc7..9fcce44 100644 --- a/docs/ws_v2.md +++ b/docs/ws_v2.md @@ -9,14 +9,14 @@ a websocket client and a rest interface client ## Client ```python -Client(self, API_KEY=None, API_SECRET=None, rest_host='https://api-pub.bitfinex.com/v2', ws_host='wss://api-pub.bitfinex.com/ws/2', create_event_emitter=None, logLevel='INFO', dead_man_switch=False, ws_capacity=25, *args, **kwargs) +Client(self, API_KEY=None, API_SECRET=None, rest_host='https://test.bitfinex.com/v2', ws_host='wss://test.bitfinex.com/ws/2', create_event_emitter=None, logLevel='INFO', dead_man_switch=False, ws_capacity=25, *args, **kwargs) ``` The bfx client exposes rest and websocket objects # BfxWebsocket ```python -BfxWebsocket(self, API_KEY=None, API_SECRET=None, host='wss://api-pub.bitfinex.com/ws/2', manageOrderBooks=False, dead_man_switch=False, ws_capacity=25, logLevel='INFO', parse_float=, *args, **kwargs) +BfxWebsocket(self, API_KEY=None, API_SECRET=None, host='wss://test.bitfinex.com/ws/2', manageOrderBooks=False, dead_man_switch=False, ws_capacity=25, logLevel='INFO', parse_float=, *args, **kwargs) ``` More complex websocket that heavily relies on the btfxwss module.