0xfMissingNo
0xfMissingNo
wanted to handle async loops from a separate thread if need be; pushing my patch upstream: ```python In [1]: import os In [2]: import time In [3]: import threading In...
```python In [1]: from dydx3 import Client In [2]: from dydx3.constants import API_HOST_MAINNET In [3]: cl = Client(API_HOST_MAINNET) In [4]: cl.ws.start() -- connection established -- In [5]: cl.ws.subscribe_to_orderbook('ETH-USD') {"type":"channel_data","connection_id":"28f90048-272f-4af7-a0ff-2cb41a6e7085","message_id":2,"id":"ETH-USD","channel":"v3_orderbook","contents":{"offset":"1553537494","bids":[],"asks":[["3158.1","1.959"]]}} {"type":"channel_data","connection_id":"28f90048-272f-4af7-a0ff-2cb41a6e7085","message_id":3,"id":"ETH-USD","channel":"v3_orderbook","contents":{"offset":"1553537498","bids":[["3140.4","82.289"],["3139.3","0.032"]],"asks":[]}}...
was going to make TorClient for myself; noticed some TODOs that'd look like would helpful to knock out. lmk and I'll remove the TorClient ```python In [1]: from dydx3.constants import...