Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upv1 vs v3 are not about public vs private calls, and ticker calls use obsolete API #271
Comments
|
Is there any progress in this issue? |
v1 and v3 are treated as if they were related to public vs private (and widthraw) calls:
python-binance/binance/client.py
Lines 17 to 19 in 852b256
I believe this is a mistake, proven by that the v1 ticker endpoints (used by the client) have been retired in favor of v3 versions with the same functionality:
#270 may be the result of undocumented changes to the (now unofficial) v1 endpoints that the client is still using:
python-binance/binance/client.py
Line 407 in 852b256
python-binance/binance/client.py
Line 438 in 852b256
Both of the above functions reference documentation that no longer exists.
EDIT: the v3 version is probably just an alias to v1 because it exhibits the same bug that #270 is about.