Releases: Drakkar-Software/ccxt
Releases · Drakkar-Software/ccxt
4.5.7-1-dk
Remove coincurve dependency for Python 3.9 #### ECDSA Support Some exchanges, such as Hyperliquid, Binance, and Paradex use **ECDSA** for request signing. By default, CCXT includes a pure Python ECDSA implementation that ensures compatibility across all environments. However, this implementation may not meet the performance requirements of latency-sensitive applications. To address this, CCXT also supports the Coincurve library, which dramatically reduces signing time from approximately 45 ms to under 0.05 ms. For optimal performance, we recommend installing Coincurve via: ``` pip install coincurve ``` Once installed, CCXT will automatically detect and use it.