diff --git a/bfxapi/__init__.py b/bfxapi/__init__.py index 4fbdfd6..2cd5ce6 100644 --- a/bfxapi/__init__.py +++ b/bfxapi/__init__.py @@ -1,6 +1,6 @@ from .client import Client -from .urls import REST_HOST, PUB_REST_HOST, STAGING_REST_HOST, \ - WSS_HOST, PUB_WSS_HOST, STAGING_WSS_HOST +from .urls import REST_HOST, PUB_REST_HOST, \ + WSS_HOST, PUB_WSS_HOST NAME = "bfxapi" \ No newline at end of file diff --git a/bfxapi/urls.py b/bfxapi/urls.py index c9a622b..de31a04 100644 --- a/bfxapi/urls.py +++ b/bfxapi/urls.py @@ -1,7 +1,5 @@ REST_HOST = "https://api.bitfinex.com/v2" PUB_REST_HOST = "https://api-pub.bitfinex.com/v2" -STAGING_REST_HOST = "https://api.staging.bitfinex.com/v2" WSS_HOST = "wss://api.bitfinex.com/ws/2" -PUB_WSS_HOST = "wss://api-pub.bitfinex.com/ws/2" -STAGING_WSS_HOST = "wss://api.staging.bitfinex.com/ws/2" \ No newline at end of file +PUB_WSS_HOST = "wss://api-pub.bitfinex.com/ws/2" \ No newline at end of file