We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04629fe commit 1c94242Copy full SHA for 1c94242
3 files changed
common/CHANGELOG.md
@@ -1,6 +1,12 @@
1
# Changelog
2
3
-## 3.4.0 - 2025-01-13
+## 3.4.1 - 2026-01-23
4
+
5
+### Added (1)
6
7
+- Added `Alpha` base url
8
9
+## 3.4.0 - 2026-01-13
10
11
### Changed (1)
12
common/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "binance-common"
-version = "3.4.0"
+version = "3.4.1"
description = "Binance Common Types and Utilities for Binance Connectors"
authors = ["Binance"]
license = "MIT"
common/src/binance_common/constants.py
@@ -15,6 +15,9 @@ class WebsocketMode(Enum):
15
# Algo constants
16
ALGO_REST_API_PROD_URL = "https://api.binance.com"
17
18
+# Alpha constants
19
+ALPHA_REST_API_PROD_URL = "https://www.binance.com"
20
21
# Auto Invest constants
22
AUTO_INVEST_REST_API_PROD_URL = "https://api.binance.com"
23
0 commit comments