CryptoCom.Net
3.10.0
dotnet add package CryptoCom.Net --version 3.10.0
NuGet\Install-Package CryptoCom.Net -Version 3.10.0
<PackageReference Include="CryptoCom.Net" Version="3.10.0" />
<PackageVersion Include="CryptoCom.Net" Version="3.10.0" />
<PackageReference Include="CryptoCom.Net" />
paket add CryptoCom.Net --version 3.10.0
#r "nuget: CryptoCom.Net, 3.10.0"
#:package [email protected]
#addin nuget:?package=CryptoCom.Net&version=3.10.0
#tool nuget:?package=CryptoCom.Net&version=3.10.0
CryptoCom.Net
CryptoCom.Net is a client library for accessing the Crypto.com REST and Websocket API.
Features
- Response data is mapped to descriptive models
- Input parameters and response values are mapped to discriptive enum values where possible
- High performance
- Automatic websocket (re)connection management
- Client side rate limiting
- Client side order book implementation
- Support for managing different accounts
- Extensive logging
- Support for different environments
- Easy integration with other exchange client based on the CryptoExchange.Net base library
- Native AOT support
Supported Frameworks
The library is targeting both .NET Standard 2.0 and .NET Standard 2.1 for optimal compatibility, as well as the latest dotnet versions to use the latest framework features.
| .NET implementation | Version Support |
|---|---|
| .NET Core | 2.0 and higher |
| .NET Framework | 4.6.1 and higher |
| Mono | 5.4 and higher |
| Xamarin.iOS | 10.14 and higher |
| Xamarin.Android | 8.0 and higher |
| UWP | 10.0.16299 and higher |
| Unity | 2018.1 and higher |
Install the library
NuGet
dotnet add package CryptoCom.Net
GitHub packages
CryptoCom.Net is available on GitHub packages. You'll need to add https://nuget.pkg.github.com/JKorf/index.json as a NuGet package source.
Download release
The NuGet package files are added along side the source with the latest GitHub release which can found here.
How to use
Basic request:
// Get the ETH/USD ticker via rest request
var restClient = new CryptoComRestClient();
var tickerResult = await restClient.ExchangeApi.ExchangeData.GetTickerAsync("ETH_USD");
var lastPrice = tickerResult.Data.LastPrice;
Place order:
var restClient = new CryptoComRestClient(opts => {
opts.ApiCredentials = new CryptoComCredentials("APIKEY", "APISECRET");
});
// Place Limit order to buy 0.1 ETH at 2000
var orderResult = await restClient.ExchangeApi.Trading.PlaceOrderAsync(
"ETH_USDT",
OrderSide.Buy,
OrderType.Limit,
0.1m,
price: 2000);
WebSocket subscription:
// Subscribe to ETH/USD ticker updates via the websocket API
var socketClient = new CryptoComSocketClient();
var tickerSubscriptionResult = socketClient.ExchangeApi.SubscribeToTickerUpdatesAsync("ETH_USD", (update) =>
{
var lastPrice = update.Data.LastPrice;
});
For information on the clients, dependency injection, response processing and more see the documentation, or have a look at the examples here or here.
CryptoExchange.Net
CryptoCom.Net is based on the CryptoExchange.Net base library. Other exchange API implementations based on the CryptoExchange.Net base library are available and follow the same logic.
CryptoExchange.Net also allows for easy access to different exchange API's.
| Exchange | Repository | Nuget |
|---|---|---|
| Aster | JKorf/Aster.Net | |
| Binance | JKorf/Binance.Net | |
| BingX | JKorf/BingX.Net | |
| Bitfinex | JKorf/Bitfinex.Net | |
| Bitget | JKorf/Bitget.Net | |
| BitMart | JKorf/BitMart.Net | |
| BitMEX | JKorf/BitMEX.Net | |
| Bitstamp | JKorf/Bitstamp.Net | |
| BloFin | JKorf/BloFin.Net | |
| Bybit | JKorf/Bybit.Net | |
| Coinbase | JKorf/Coinbase.Net | |
| CoinEx | JKorf/CoinEx.Net | |
| CoinGecko | JKorf/CoinGecko.Net | |
| CoinW | JKorf/CoinW.Net | |
| DeepCoin | JKorf/DeepCoin.Net | |
| Gate.io | JKorf/GateIo.Net | |
| HTX | JKorf/HTX.Net | |
| HyperLiquid | JKorf/HyperLiquid.Net | |
| Gate.io | JKorf/GateIo.Net | |
| Kraken | JKorf/Kraken.Net | |
| Kucoin | JKorf/Kucoin.Net | |
| Mexc | JKorf/Mexc.Net | |
| OKX | JKorf/OKX.Net | |
| Polymarket | JKorf/Polymarket.Net | |
| Upbit | JKorf/Upbit.Net | |
| Toobit | JKorf/Toobit.Net | |
| WhiteBit | JKorf/WhiteBit.Net | |
| XT | JKorf/XT.Net |
When using multiple of these API's the CryptoClients.Net package can be used which combines this and the other packages and allows easy access to all exchange API's.
Discord
A Discord server is available here. For discussion and/or questions around the CryptoExchange.Net and implementation libraries, feel free to join.
Supported functionality
Exchange REST API
| API | Supported | Location |
|---|---|---|
| Reference and Market Data | ✓ | restClient.ExchangeApi.ExchangeData |
| Account Balance and Position | ✓ | restClient.ExchangeApi.Account / restClient.ExchangeApi.Trading |
| Trading | ✓ | restClient.ExchangeApi.Account / restClient.ExchangeApi.Trading |
| Advanced Order Management | ✓ | restClient.ExchangeApi.Trading |
| Order, Trade, Transaction History | ✓ | restClient.ExchangeApi.Account / restClient.ExchangeApi.Trading |
| Wallet | ✓ | restClient.ExchangeApi.Account |
| Staking | ✓ | restClient.ExchangeApi.Staking |
Exchange Websocket API
| API | Supported | Location |
|---|---|---|
| User subscription | ✓ | socketClient.ExchangeApi |
| Order management | ✓ | socketClient.ExchangeApi |
| Market subscription | ✓ | socketClient.ExchangeApi |
Support the project
Any support is greatly appreciated.
Referal
If you do not yet have an account please consider using this referal link to sign up:
Link
Donate
Make a one time donation in a crypto currency of your choice. If you prefer to donate a currency not listed here please contact me.
Btc: bc1q277a5n54s2l2mzlu778ef7lpkwhjhyvghuv8qf
Eth: 0xcb1b63aCF9fef2755eBf4a0506250074496Ad5b7
USDT (TRX) TKigKeJPXZYyMVDgMyXxMf17MWYia92Rjd
Sponsor
Alternatively, sponsor me on Github using Github Sponsors.
Release notes
Version 3.10.0 - 09 Apr 2026
- Updated CryptoExchange.Net to version 11.1.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Added reduceOnly parameter to PlaceOrderAsync endpoint
- Added ThisAccount property to GetAccountInfoAsync endpoint
Version 3.9.1 - 24 Mar 2026
- Fix issue in credentials copying
Version 3.9.0 - 24 Mar 2026
Updated CryptoExchange.Net to version 11.0.1, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
Updated class for supplying API credentials from ApiCredentials to CryptoComCredentials
Updated Shared order status parsing to default to Unknown value if not parsable
Notes for updating:
- Update ApiCredentials to CryptoComCredentials for authentication, i.e.
ApiCredentials = new ApiCredentials(..)⇒ApiCredentials = new CryptoComCredentials(..)
- Update ApiCredentials to CryptoComCredentials for authentication, i.e.
Version 3.8.0 - 06 Mar 2026
- Updated CryptoExchange.Net to version 10.8.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Improved method XML comments
Version 3.7.0 - 24 Feb 2026
- Updated CryptoExchange.Net to version 10.7.0
- Added additional Http settings to client options
- Updated Shared REST interfaces pagination logic
- Updated HttpClient registration, fixing issue of DNS changes not getting processed
- Fixed UserClientProvider using unconfigured HttpClient
Version 3.6.0 - 16 Feb 2026
- Updated CryptoExchange.Net to version 10.6.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
Version 3.5.0 - 10 Feb 2026
- Updated CryptoExchange.Net to version 10.5.1, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Updated UserClientProvider internal client cache to non-static to prevent cleanup issues
Version 3.4.0 - 06 Feb 2026
- Updated CryptoExchange.Net to version 10.4.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Added CryptoComUserSpotDataTracker and CryptoComUserFuturesDataTracker
- Added additional methods for requesting supported symbols to Shared ISpotSymbolRestClient/IFuturesSymbolRestClient interfaces
- Added PositionMode mapping on SharedPosition models
- Added Status mapping for SharedDeposit models
- Fixed disposed clients getting returned from UserClientProvider
Version 3.3.0 - 22 Jan 2026
- Updated CryptoExchange.Net to version 10.3.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Removed legacy websocket message handling and the corresponding UseUpdatedDeserialization client option
- Added Metadata to CryptoComExchange
Version 3.2.1 - 14 Jan 2026
- Updated CryptoExchange.Net to version 10.2.3, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
Version 3.2.0 - 13 Jan 2026
- Updated CryptoExchange.Net to version 10.2.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Added SequenceNumber to order book websocket updates
- Isolated Margin Position support: Added restClient.ExchangeApi.Account.CreateIsolatedMarginTransferAsync endpoint
- Isolated Margin Position support: Added restClient.ExchangeApi.Account.SetIsolatedMarginLeverageAsync endpoint
- Isolated Margin Position support: Added various isolationId parameter to various endpoints
- Isolated Margin Position support: Added various IsolationId property to various response models
Version 3.1.0 - 07 Jan 2026
- Updated CryptoExchange.Net version to 10.1.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Added DataTimeLocal and DataAge properties to DataEvent object
- Added UpdateServerTime, UpdateLocalTime and DataAge properties to (I)SymbolOrderBook
- Updated GetTransactionHistory to send time as nanoseconds
Version 3.0.3 - 19 Dec 2025
- Added missing value TransactionType enum
- Fixed first first trade update not getting marked as snapshot
- Updated CryptoExchange.Net to 10.0.2 to fix parameter serialization error
Version 3.0.2 - 18 Dec 2025
- Fixed Shared API Spot Ticker updates not calling callback
Version 3.0.1 - 16 Dec 2025
- Fixed socketClient.ExchangeApi.SubscribeToOrderUpdatesAsync subscription not recognizing messages
Version 3.0.0 - 16 Dec 2025
- Added Net10.0 target framework
- Updated CryptoExchange.Net version to 10.0.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ for full release notes
- Improved performance across the board, biggest gains in websocket message processing
- Updated REST message response handling
- Updated WebSocket message handling
- Added UseUpdatedDeserialization socket client options to toggle by new and old message handling
- Added SocketIndividualSubscriptionCombineTarget socket client option
- Updated Shared API's subscription update types from ExchangeEvent to DataEvent
Version 2.12.0 - 11 Nov 2025
- Updated CryptoExchange.Net to version 9.13.0
Version 2.11.0 - 03 Nov 2025
- Updated CryptoExchange.Net to version 9.12.0
- Added support for using SharedSymbol.UsdOrStable in Shared APIs
- Fixed pagination for the GetDepositHistoryAsync method
- Fixed exception when initial trade snapshot has no items in TradeTracker
- Removed some unhelpful verbose logs
Version 2.10.0 - 16 Oct 2025
- Updated CryptoExchange.Net version to 9.10.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added ClientOrderId mapping on SharedUserTrade models
Version 2.9.0 - 30 Sep 2025
- Updated CryptoExchange.Net version to 9.8.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added ITrackerFactory to TrackerFactory implementation
Version 2.8.0 - 01 Sep 2025
- Updated CryptoExchange.Net version to 9.7.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- HTTP REST requests will now use HTTP version 2.0 by default
Version 2.7.0 - 25 Aug 2025
- Updated CryptoExchange.Net version to 9.6.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added ClearUserClients method to user client provider
Version 2.6.1 - 21 Aug 2025
- Added websocket unknown symbol error mapping
Version 2.6.0 - 20 Aug 2025
- Updated CryptoExchange.Net to version 9.5.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added improved error parsing
- Fixed serialization of restClient.ExchangeApi.Trading.PlaceMultipleOrdersAsync when no execution mode is provided
Version 2.5.0 - 04 Aug 2025
- Updated CryptoExchange.Net to version 9.4.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
Version 2.4.0 - 23 Jul 2025
- Updated CryptoExchange.Net to version 9.3.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Updated websocket message matching
Version 2.3.0 - 15 Jul 2025
- Updated CryptoExchange.Net to version 9.2.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added SmartPostOnly parameters and enum value
Version 2.2.0 - 20 Jun 2025
- Added restClient.ExchangeApi.ExchangeData.GetAnnouncementsAsync endpoint
- Added restClient.ExchangeApi.Trading.EditOrderAsync endpoint
Version 2.1.0 - 02 Jun 2025
- Updated CryptoExchange.Net to version 9.1.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added (I)CryptoComUserClientProvider allowing for easy client management when handling multiple users
Version 2.0.0 - 13 May 2025
- Updated CryptoExchange.Net to version 9.0.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added support for Native AOT compilation
- Added RateLimitUpdated event
- Added SharedSymbol response property to all Shared interfaces response models returning a symbol name
- Added GenerateClientOrderId method to ExchangeApi Shared client
- Added IBookTickerRestClient implementation to ExchangeApi Shared client
- Added ISpotOrderClientIdClient implementation to ExchangeApi Shared client
- Added IFuturesOrderClientIdClient implementation to ExchangeApi Shared client
- Added ISpotTriggerOrderRestClient implementation to ExchangeApi Shared client
- Added IFuturesTriggerOrderRestClient implementation to ExchangeApi Shared client
- Added IFuturesTpSlRestClient implementation to ExchangeApi Shared client
- Added MaxLongLeverage, MaxShortLeverage to SharedFuturesSymbol model
- Added TriggerPrice, IsTriggerOrder properties to SharedSpotOrder model
- Added TriggerPrice, IsTriggerOrder properties to SharedFuturesOrder model
- Added OptionalExchangeParameters and Supported properties to EndpointOptions
- Added TransactionTime to CryptoComUserTrade model
- Added All property to retrieve all available environment on CryptoComEnvironment
- Refactored Shared clients quantity parameters and responses to use SharedQuantity
- Updated Reason property on CryptoComOrder to return a OrderRejectedReason Enum value
- Updated all IEnumerable response and model types to array response types
- Updated PlaceMultipleOrdersAsync endpoints to return a list of CallResult models and an error if all orders fail to place
- Renamed CryptoComExchangeSymbolOrderBook to CryptoComSymbolOrderBook
- Removed Newtonsoft.Json dependency
- Removed legacy AddCryptoCom(restOptions, socketOptions) DI overload
- Improved socket client order placement response processing
- Fixed incorrect DataTradeMode on certain Shared interface responses
- Fixed InvalidOperationException in user data snapshot updates when there is no data
- Fixed Shared spot order socket updates having a larger fill quantity than order quantity
- Fixed some typos
Version 2.0.0-beta4 - 01 May 2025
- Updated CryptoExchange.Net version to 9.0.0-beta5
- Added property to retrieve all available API environments
- Added mapping of CryptoComOrder Reason property to enum
Version 2.0.0-beta3 - 25 Apr 2025
- Fixed InvalidOperationException in user data snapshot updates if the snapshot is empty
Version 2.0.0-beta2 - 23 Apr 2025
- Updated CryptoExchange.Net to version 9.0.0-beta2
- Fixed incorrect DataTradeMode on responses
Version 2.0.0-beta1 - 22 Apr 2025
- Updated CryptoExchange.Net to version 9.0.0-beta1, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added support for Native AOT compilation
- Added RateLimitUpdated event
- Added SharedSymbol response property to all Shared interfaces response models returning a symbol name
- Added GenerateClientOrderId method to ExchangeApi Shared client
- Added IBookTickerRestClient implementation to ExchangeApi Shared client
- Added ISpotOrderClientIdClient implementation to ExchangeApi Shared client
- Added IFuturesOrderClientIdClient implementation to ExchangeApi Shared client
- Added ISpotTriggerOrderRestClient implementation to ExchangeApi Shared client
- Added IFuturesTriggerOrderRestClient implementation to ExchangeApi Shared client
- Added IFuturesTpSlRestClient implementation to ExchangeApi Shared client
- Added MaxLongLeverage, MaxShortLeverage to SharedFuturesSymbol model
- Added TriggerPrice, IsTriggerOrder properties to SharedSpotOrder model
- Added TriggerPrice, IsTriggerOrder properties to SharedFuturesOrder model
- Added OptionalExchangeParameters and Supported properties to EndpointOptions
- Refactored Shared clients quantity parameters and responses to use SharedQuantity
- Updated all IEnumerable response and model types to array response types
- Updated PlaceMultipleOrdersAsync endpoints to return a list of CallResult models and an error if all orders fail to place
- Renamed CryptoComExchangeSymbolOrderBook to CryptoComSymbolOrderBook
- Removed Newtonsoft.Json dependency
- Removed legacy AddCryptoCom(restOptions, socketOptions) DI overload
- Improved socket client order placement response processing
- Fixed some typos
Version 1.6.0 - 11 Feb 2025
- Updated CryptoExchange.Net to version 8.8.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added support for more SharedKlineInterval values
- Added setting of DataTime value on websocket DataEvent updates
- Fixed incorrect API docs refernces for subscription methods
- Fix Mono runtime exception on rest client construction using DI
Version 1.5.1 - 07 Jan 2025
- Updated CryptoExchange.Net version
- Added Type property to CryptoComExchange class
Version 1.5.0 - 23 Dec 2024
- Updated CryptoExchange.Net to version 8.5.0, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Added SetOptions methods on Rest and Socket clients
- Added setting of DefaultProxyCredentials to CredentialCache.DefaultCredentials on the DI http client
- Improved websocket disconnect detection
Version 1.4.1 - 03 Dec 2024
- Updated CryptoExchange.Net to version 8.4.3, see https://github.com/JKorf/CryptoExchange.Net/releases/
- Fixed orderbook creation via CryptoComBookFactory
Version 1.4.0 - 28 Nov 2024
- Updated CryptoExchange.Net to version 8.4.0, see https://github.com/JKorf/CryptoExchange.Net/releases/tag/8.4.0
- Added GetFeesAsync Shared REST client implementations
- Updated CryptoComOptions to LibraryOptions implementation
- Updated test and analyzer package versions
Version 1.3.0 - 19 Nov 2024
- Updated CryptoExchange.Net to version 8.3.0, see https://github.com/JKorf/CryptoExchange.Net/releases/tag/8.3.0
- Added support for loading client settings from IConfiguration
- Added DI registration method for configuring Rest and Socket options at the same time
- Added DisplayName and ImageUrl properties to CryptoComExchange class
- Updated client constructors to accept IOptions from DI
- Removed redundant CryptoComSocketClient constructor
Version 1.2.1 - 18 Nov 2024
- Fixed deserialization issue in restClient.ExchangeApi.ExchangeData.GetTickerAsync
Version 1.2.0 - 06 Nov 2024
- Updated CryptoExchange.Net to version 8.2.0, see https://github.com/JKorf/CryptoExchange.Net/releases/tag/8.2.0
Version 1.1.0 - 28 Oct 2024
- Updated CryptoExchange.Net to version 8.1.0, see https://github.com/JKorf/CryptoExchange.Net/releases/tag/8.1.0
- Moved FormatSymbol to CryptoComExchange class
- Added support Side setting on SharedTrade model
- Added CryptoComTrackerFactory for creating trackers
- Added overload to Create method on CryptoComOrderBookFactory support SharedSymbol parameter
- Renamed CreateExchange method on CryptoComOrderBookFactory to Create
Version 1.0.1 - 22 Oct 2024
- Fixed CryptoExchange.Net reference
Version 1.0.0 - 22 Oct 2024
- Initial release
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- CryptoExchange.Net (>= 11.1.0)
-
.NETStandard 2.1
- CryptoExchange.Net (>= 11.1.0)
-
net10.0
- CryptoExchange.Net (>= 11.1.0)
-
net8.0
- CryptoExchange.Net (>= 11.1.0)
-
net9.0
- CryptoExchange.Net (>= 11.1.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on CryptoCom.Net:
| Package | Downloads |
|---|---|
|
CryptoClients.Net
CryptoClients.Net offers full easy access to 27 different cryptocurrency exchange API's, such as Binance, Bybit, HyperLiquid and many more. It offers a unified way to access the API's and tools to dynamically call endpoints on different exchanges. |
|
|
Le.CryptoClients.Net
CryptoClients.Net is a collection of multiple cryptocurrency exchange API clients for accessing both the REST API's and WebSocket API's. Supports order and account management and requesting and streaming both public and private data. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on CryptoCom.Net:
| Repository | Stars |
|---|---|
|
JKorf/CryptoExchange.Net
A C# .netstandard base library used for implementing cryptocurrency exchange API's.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.10.0 | 312 | 09/04/2026 |
| 3.9.1 | 498 | 24/03/2026 |
| 3.9.0 | 91 | 24/03/2026 |
| 3.8.0 | 334 | 06/03/2026 |
| 3.7.0 | 1,129 | 24/02/2026 |
| 3.6.0 | 497 | 16/02/2026 |
| 3.5.0 | 305 | 10/02/2026 |
| 3.4.0 | 146 | 06/02/2026 |
| 3.3.0 | 1,145 | 22/01/2026 |
| 3.2.1 | 275 | 14/01/2026 |
| 3.2.0 | 214 | 13/01/2026 |
| 3.1.0 | 227 | 07/01/2026 |
| 3.0.3 | 667 | 19/12/2025 |
| 3.0.2 | 333 | 18/12/2025 |
| 3.0.1 | 428 | 16/12/2025 |
| 3.0.0 | 410 | 16/12/2025 |
| 2.12.0 | 1,112 | 11/11/2025 |
| 2.11.0 | 425 | 03/11/2025 |
| 2.10.0 | 648 | 16/10/2025 |
| 2.9.0 | 667 | 30/09/2025 |