KrakenExchange.Net
4.3.0-beta2
See the version list below for details.
dotnet add package KrakenExchange.Net --version 4.3.0-beta2
NuGet\Install-Package KrakenExchange.Net -Version 4.3.0-beta2
<PackageReference Include="KrakenExchange.Net" Version="4.3.0-beta2" />
paket add KrakenExchange.Net --version 4.3.0-beta2
#r "nuget: KrakenExchange.Net, 4.3.0-beta2"
// Install KrakenExchange.Net as a Cake Addin #addin nuget:?package=KrakenExchange.Net&version=4.3.0-beta2&prerelease // Install KrakenExchange.Net as a Cake Tool #tool nuget:?package=KrakenExchange.Net&version=4.3.0-beta2&prerelease
Kraken.Net
Kraken.Net is a wrapper around the Kraken API as described on Kraken, including all features the API provides using clear and readable objects, both for the REST as the websocket API's.
Supported Frameworks
The library is targeting both .NET Standard 2.0
and .NET Standard 2.1
for optimal compatibility
.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 |
Get the library
dotnet add package KrakenExchange.Net
How to use
- REST Endpoints
// Get the ETH/USD ticker via rest request var restClient = new KrakenRestClient(); var tickerResult = await restClient.SpotApi.ExchangeData.GetTickerAsync("ETHUSD"); var lastPrice = tickerResult.Data.First().Value.LastTrade.Price;
- Websocket streams
// Subscribe to ETH/USD ticker updates via the websocket API var socketClient = new KrakenSocketClient(); var tickerSubscriptionResult = socketClient.SpotApi.SubscribeToTickerUpdatesAsync("ETH/USD", (update) => { var lastPrice = update.Data.LastTrade.Price; });
For information on the clients, dependency injection, response processing and more see the documentation, or have a look at the examples here.
CryptoExchange.Net
Kraken.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 |
---|---|---|
Binance | JKorf/Binance.Net | |
Bitfinex | JKorf/Bitfinex.Net | |
Bitget | JKorf/Bitget.Net | |
Bybit | JKorf/Bybit.Net | |
CoinEx | JKorf/CoinEx.Net | |
CoinGecko | JKorf/CoinGecko.Net | |
Huobi | JKorf/Huobi.Net | |
Kucoin | JKorf/Kucoin.Net | |
Mexc | JKorf/Mexc.Net | |
OKX | JKorf/OKX.Net |
Discord
A Discord server is available here. Feel free to join for discussion and/or questions around the CryptoExchange.Net and implementation libraries.
Supported functionality
Spot Api
API | Supported | Location |
---|---|---|
Market Data | ✓ | restClient.SpotApi.ExchangeData |
Account Data | ✓ | restClient.SpotApi.Account / restClient.SpotApi.Trading |
Trading | ✓ | restClient.SpotApi.Trading |
Funding | ✓ | restClient.SpotApi.Account |
Subaccounts | X | |
Earn | X | |
Websocket Public Messages | ✓ | socketClient.SpotApi |
Websocket Private Messages | ✓ | socketClient.SpotApi |
Futures Api
API | Supported | Location |
---|---|---|
Account Information | ✓ | restClient.FuturesApi.Account |
Assignment Program | X | |
Fee Schedules | ✓ | restClient.FuturesApi.ExchangeData |
General | ✓ | restClient.FuturesApi.ExchangeData |
Historical data | ✓ | restClient.FuturesApi.Trading |
Historical Funding Rates | ✓ | restClient.FuturesApi.ExchangeData |
Instrument Details | ✓ | restClient.FuturesApi.ExchangeData |
Market Data | ✓ | restClient.FuturesApi.ExchangeData |
Multi-Collateral | ✓ | restClient.FuturesApi.Account / restClient.FuturesApi.Trading |
Order Management | ✓ | restClient.FuturesApi.Trading |
Subaccounts | X | |
Trading settings | X | |
Transfers | ✓ | restClient.FuturesApi.Account |
Account History | ✓ | restClient.FuturesApi.Account / restClient.FuturesApi.Trading |
Market History | ✓ | restClient.FuturesApi.ExchangeData |
Analytics | X | |
Candles | ✓ | restClient.FuturesApi.ExchangeData |
Websocket Public Feeds | ✓ | socketClient.FuturesApi |
Websocket Private Feeds | ✓ | socketClient.FuturesApi |
Support the project
I develop and maintain this package on my own for free in my spare time, any support is greatly appreciated.
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: bc1qz0jv0my7fc60rxeupr23e75x95qmlq6489n8gh
Eth: 0x8E21C4d955975cB645589745ac0c46ECA8FAE504
Sponsor
Alternatively, sponsor me on Github using Github Sponsors.
Release notes
Version 4.3.0-beta2 - 21 Feb 2024
- Fix for reconnecting authenticated websocket connections
Version 4.3.0-beta1 - 06 Feb 2024
- Updated CryptoExchange.Net and implemented reworked websocket message handling. For release notes for the CryptoExchange.Net base library see: https://github.com/JKorf/CryptoExchange.Net/tree/beta?tab=readme-ov-file#release-notes
- Fixed issue in DI registration causing http client to not be correctly injected
- Added single symbol overloads to Futures websocket subscriptions
- Removed excessive constructor overload for KrakenRestClient
Version 4.2.2 - 04 Jan 2024
- Fixed issue deserializing DateTime value in user order updates when running .net framework
Version 4.2.1 - 03 Jan 2024
- Added SpotApi.Account.GetWithdrawAddressesAsync
- Added SpotApi.Account.GetWithdrawMethodsAsync
- Added missing otp parameter SpotApi.Trading.EditOrderAsync
- Fixed SpotApi.Trading.EditOrderAsync response deserialization
Version 4.2.0 - 02 Dec 2023
- Added SpotApi.Trading.AddMultipleOrdersAsync
- Added SpotApi.Trading.EditOrderAsync
- Added FuturesApi.Account.GetInitialMarginRequirementsAsync
- Added FuturesApi.Account.GetMaxOrderQuantityAsync
- Changed futures quantity parameter from int to decimal
Version 4.1.5 - 24 Oct 2023
- Updated CryptoExchange.Net
Version 4.1.4 - 09 Oct 2023
- Updated CryptoExchange.Net version
- Added ISpotClient to DI injection
Version 4.1.3 - 25 Aug 2023
- Updated CryptoExchange.Net
Version 4.1.2 - 23 Jul 2023
- Fix for missing Symbol property on futures order book stream update
Version 4.1.1 - 11 Jul 2023
- Added amount parameter to GetDepositAddresses endpoint
- Added limit parameter to SpotApi GetTradeHistory endpoint
- Added address parameter to Withdraw endpoint
- Added missing stop order properties on futures OpenOrders model
- Fixed duplice parameter issue on SpotApi PlaceOrder
- Fixed TickSize property parsing on SpotApi GetSymbols endpoint
Version 4.1.0 - 05 Jul 2023
- Added support for Kraken Futures
Version 4.0.0 - 25 Jun 2023
- Updated CryptoExchange.Net to version 6.0.0
- Renamed KrakenClient to KrakenRestClient
- Renamed **Streams to **Api on the KrakenSocketClient
- Updated endpoints to consistently use a base url without any path as basis to make switching environments/base urls clearer
- Added IKrakenOrderBookFactory and implementation for creating order books
- Updated dependency injection register method (AddKraken)
Version 3.1.10 - 19 Jun 2023
- Fixed close ordertype parameter being sent even when not provided
Version 3.1.9 - 14 May 2023
- Added close parameters to rest PlaceOrder endpoint
Version 3.1.8 - 15 Apr 2023
- Added GetWithdrawalStatusAsync endpoint
- Added CancelWithdrawalAsync endpoint
- Added TransferAsync endpoint
- Updated various response models and endpoint parameters
Version 3.1.7 - 18 Mar 2023
- Added reduceOnly and selfTradePreventionType parameters to place order endpoints
- Updated CryptoExchange.Net
Version 3.1.6 - 14 Feb 2023
- Updated CryptoExchange.Net
- Added retry on nonce error
Version 3.1.5 - 05 Feb 2023
- Added CancelAllOrdersAsync endpoint
Version 3.1.4 - 13 Jan 2023
- Added support for Trade In Force
Version 3.1.3 - 03 Jan 2023
- Fixed stackoverflow on SubscribeToTradeUpdatesAsync
Version 3.1.2 - 29 Dec 2022
- Added multi-symbol overloads for socket client subscribe methods
Version 3.1.1 - 21 Nov 2022
- Fixed reconnect url
Version 3.1.0 - 17 Nov 2022
- Updated CryptoExchange.Net
- Fixed authenticated socket subscription not being able to reconnect
Version 3.0.15 - 17 Aug 2022
- Added support for viqc oflags
Version 3.0.14 - 18 Jul 2022
- Updated CryptoExchange.Net
Version 3.0.13 - 16 Jul 2022
- Updated CryptoExchange.Net
Version 3.0.12 - 10 Jul 2022
- Fixed exception when trying to access result from PlaceOrderAsync when validateOnly is set to true
- Updated CryptoExchange.Net
Version 3.0.11 - 12 Jun 2022
- Added staking endpoints
- Updated CryptoExchange.Net
Version 3.0.10 - 24 May 2022
- Updated CryptoExchange.Net
Version 3.0.9 - 22 May 2022
- Updated CryptoExchange.Net
Version 3.0.8 - 08 May 2022
- Fixed symbol validation not allowing T/EUR
- Updated CryptoExchange.Net
Version 3.0.7 - 01 May 2022
- Updated CryptoExchange.Net which fixed an timing related issue in the websocket reconnection logic
- Added seconds representation to KlineInterval enum
- Added flags parameter to socket PlaceOrderAsync
Version 3.0.6 - 14 Apr 2022
- Updated CryptoExchange.Net
Version 3.0.5 - 10 Mar 2022
- Updated CryptoExchange.Net
Version 3.0.4 - 08 Mar 2022
- Fixed startTime/endTime parameters in socket PlaceOrderAsync
- Fixed socket CancelOrderAsync not returning error on if failed
- Updated CryptoExchange.Net
Version 3.0.3 - 01 Mar 2022
- Updated CryptoExchange.Net improving the websocket reconnection robustness
Version 3.0.2 - 27 Feb 2022
- Updated CryptoExchange.Net to fix timestamping issue when request is ratelimiter
Version 3.0.1 - 24 Feb 2022
- Updated CryptoExchange.Net
Version 3.0.0 - 18 Feb 2022
Added Github.io page for documentation: https://jkorf.github.io/Kraken.Net/
Added unit tests for parsing the returned JSON for each endpoint and subscription
Added AddKraken extension method on IServiceCollection for easy dependency injection
Added URL reference to API endpoint documentation for each endpoint
Added default rate limiter
Refactored client structure to be consistent across exchange implementations
Renamed various properties to be consistent across exchange implementations
Cleaned up project structure
Fixed various models
Updated CryptoExchange.Net, see https://github.com/JKorf/CryptoExchange.Net#release-notes
See https://jkorf.github.io/Kraken.Net/MigrationGuide.html for additional notes for updating from V2 to V3
Version 2.2.3 - 08 Oct 2021
- Updated CryptoExchange.Net to fix some socket issues
Version 2.2.2 - 06 Oct 2021
- Updated CryptoExchange.Net, fixing socket issue when calling from .Net Framework
Version 2.2.1 - 05 Oct 2021
- Updated CryptoExchange.Net
Version 2.2.0 - 29 Sep 2021
- Renamed SubscribeToDepthUpdatesAsync to SubscribeToOrderBookUpdatesAsync
- Updated CryptoExchange.Net
Version 2.1.3 - 22 Sep 2021
- Fixed nonce provider when running multiple program instances
Version 2.1.2 - 22 Sep 2021
- Added trace output for nonce
Version 2.1.1 - 21 Sep 2021
- Fix for nonce provider not working correctly in combination with other exchanges
Version 2.1.0 - 20 Sep 2021
- Fix for not recognizing DOGE/BTC because Kraken renames them to XDG/XBT in update messages
- Added custom nonce provider support
- Added missing SetApiCredentials method
- Updated CryptoExchange.Net
Version 2.0.11 - 15 Sep 2021
- Updated CryptoExchange.Net
Version 2.0.10 - 09 Sep 2021
- Removed invalid check GetOrdersAsync
Version 2.0.8 - 02 Sep 2021
- Fix for disposing order book closing socket even if there are other connections
Version 2.0.7 - 02 Sep 2021
- Fixed secondaryPrice parameter serialization in PlaceOrderAsync
- Added snapshot parameter to SubscribeToOwnTradeUpdatesAsync
Version 2.0.6 - 01 Sep 2021
- Fix for user trades subscription topic
Version 2.0.5 - 26 Aug 2021
- Updated CryptoExchange.Net
Version 2.0.4 - 26 Aug 2021
- Added SequenceNumber to order/trade socket updates
- Changed all clientOrderId parameters to uint
Version 2.0.3 - 24 Aug 2021
- Updated CryptoExchange.Net, improving websocket and SymbolOrderBook performance
- Fix for order book subscription
Version 2.0.2 - 18 Aug 2021
- Added GetSystemStatusAsync endpoint
- Added SubscribeToSystemStatusUpdatesAsync subscription
- Added Place/Cancel order requests on socket client
- Fixed multiple symbols ticker subscriptions
Version 2.0.1 - 13 Aug 2021
- Fix for OperationCancelledException being thrown when closing a socket from a .net framework project
- Fixed deserialization issue in KrakenTradeVolume
Version 2.0.0 - 12 Aug 2021
- Release version with new CryptoExchange.Net version 4.0.0
- Multiple changes regarding logging and socket connection, see CryptoExchange.Net release notes
- Release version with new CryptoExchange.Net version 4.0.0
Version 2.0.0-beta3 - 09 Aug 2021
- Fixed deserialization error in GetTradeVolumeAsync
- Fixed error message invalid symbol
- Now uses IEnumerable<T> instead of params T in various methods
- Renamed GetRecentTradesAsync to GetTradeHistoryAsync
- Renamed GetTradeHistoryAsync to GetUserTradesAsync
- Renamed GetTradesAsync to GetUserTradeDetailsAsync
- Renamed WithdrawFundsAsync to WithdrawAsync
Version 2.0.0-beta2 - 26 Jul 2021
- Updated CryptoExchange.Net
Version 2.0.0-beta1 - 09 Jul 2021
- Fixed unsubscribing user streams
- Added Async postfix for async methods
- Updated CryptoExchange.Net
Version 1.4.3 - 04 mei 2021
- Added GetAvailableBalances endpoint
Version 1.4.2 - 28 apr 2021
- Updated CryptoExchange.Net
Version 1.4.1 - 19 apr 2021
- Fixed ICommonSymbol.CommonName implementation on KrakenSymbol
- Updated CryptoExchange.Net
Version 1.4.0 - 12 apr 2021
- Added GetWithdrawInfo endpoint
- Added authenticated SubscribeToOrderUpdates and SubscribeToOwnTradeUpdates subscriptions on socket client
Version 1.3.2 - 30 mrt 2021
- Updated CryptoExchange.Net
Version 1.3.1 - 01 mrt 2021
- Added Nuget SymbolPackage
Version 1.3.0 - 01 mrt 2021
- Added config for deterministic build
- Updated CryptoExchange.Net
Version 1.2.3 - 22 jan 2021
- Updated for ICommonKline
Version 1.2.2 - 14 jan 2021
- Updated CryptoExchange.Net
Version 1.2.1 - 22 dec 2020
- Added missing SetDefaultOptions for socket client
- Fixed symbol name check for ETH2.S/ETH
Version 1.2.0 - 21 dec 2020
- Update CryptoExchange.Net
- Updated to latest IExchangeClient
Version 1.1.9 - 11 dec 2020
- Updated CryptoExchange.Net
- Implemented IExchangeClient
Version 1.1.8 - 19 nov 2020
- Updated CryptoExchange.Net
Version 1.1.7 - 09 nov 2020
- Fix string values for order book checksum
Version 1.1.6 - 09 nov 2020
- Fixed symbol validation
- Added string value properties to orderbook for checksum validation
Version 1.1.5 - 08 Oct 2020
- Fixed withdraw endpoint
Version 1.1.4 - 08 Oct 2020
- Added withdraw method
- Fix close timestamp orders
- Added OrderMin property on pair
- Updated CryptoExchange.Net
Version 1.1.3 - 28 Aug 2020
- Updated CryptoExchange.Net
Version 1.1.2 - 12 Aug 2020
- Updated CryptoExchange.Net
Version 1.1.1 - 21 Jul 2020
- Added checksum validation for KrakenSymbolOrderBook
Version 1.1.0 - 20 Jul 2020
- Added two-factor authentication support
Version 1.0.8 - 21 Jun 2020
- Updated CryptoExchange
Version 1.0.7 - 16 Jun 2020
- Fix for KrakenSymbolOrderBook
Version 1.0.6 - 07 Jun 2020
- Updated CryptoExchange.Net to fix order book desync
Version 1.0.5 - 03 Mar 2020
- Fixed since parameter in GetRecentTrades endpoint
Version 1.0.4 - 27 Jan 2020
- Updated CryptoExchange.Net
Version 1.0.3 - 12 Nov 2019
- Added TradingAgreement parameter for placing orders for German accounts
Version 1.0.2 - 24 Oct 2019
- Fixed order deserialization
Version 1.0.1 - 23 Oct 2019
- Fixed validation length symbols
Version 1.0.0 - 23 Oct 2019
- See CryptoExchange.Net 3.0 release notes
- Added input validation
- Added CancellationToken support to all requests
- Now using IEnumerable<> for collections
- Renamed Market → Symbol
- Renamed GetAccountBalance → GetBalances
Version 0.0.4 - 15 Oct 2019
- Fixed placing orders
- Fixed possible missmatch in stream subscriptions
Version 0.0.3 - 24 Sep 2019
- Added missing order type, added missing ledger transfer types
Version 0.0.2 - 10 Sep 2019
- Added missing SetDefaultOptions and SetApiCredentials methods
Version 0.0.1 - 29 Aug 2019
- 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 was computed. 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. |
.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
- Crc32.NET (>= 1.2.0)
- CryptoExchange.Net (>= 7.0.0-beta2)
-
.NETStandard 2.1
- Crc32.NET (>= 1.2.0)
- CryptoExchange.Net (>= 7.0.0-beta2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on KrakenExchange.Net:
Package | Downloads |
---|---|
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. |
|
CryptoThune.Net
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on KrakenExchange.Net:
Repository | Stars |
---|---|
JKorf/CryptoExchange.Net
A C# .netstandard base library used for implementing cryptocurrency exchange API's.
|
|
JKorf/Kraken.Net
A C# .netstandard client library for the Kraken REST and Websocket Spot and Futures API focusing on clear usage and models
|
Version | Downloads | Last updated |
---|---|---|
5.1.1 | 132 | 11/1/2024 |
5.1.0 | 220 | 10/28/2024 |
5.0.2 | 459 | 10/22/2024 |
5.0.1 | 85 | 10/21/2024 |
5.0.0 | 590 | 10/14/2024 |
4.12.0 | 2,075 | 9/27/2024 |
4.11.1 | 1,602 | 8/28/2024 |
4.11.0 | 826 | 8/7/2024 |
4.10.0 | 4,397 | 7/29/2024 |
4.8.1 | 1,265 | 7/2/2024 |
4.8.0 | 1,178 | 6/23/2024 |
4.7.0 | 13,164 | 6/11/2024 |
4.6.6 | 12,774 | 6/2/2024 |
4.6.5 | 17,567 | 5/7/2024 |
4.6.4 | 13,625 | 5/3/2024 |
4.6.3 | 12,428 | 5/1/2024 |
4.6.2 | 12,552 | 4/28/2024 |
4.6.1 | 12,556 | 4/23/2024 |
4.6.0 | 12,616 | 4/18/2024 |
4.5.0 | 13,010 | 4/1/2024 |
4.4.3 | 12,693 | 3/25/2024 |
4.4.2 | 11,803 | 3/24/2024 |
4.4.1 | 11,768 | 3/24/2024 |
4.4.0 | 12,089 | 3/16/2024 |
4.3.0 | 13,296 | 2/25/2024 |
4.3.0-beta2 | 11,894 | 2/21/2024 |
4.3.0-beta1 | 8,193 | 2/6/2024 |
4.2.2 | 9,404 | 1/4/2024 |
4.2.1 | 8,393 | 1/3/2024 |
4.2.0 | 18,534 | 12/2/2023 |
4.1.5 | 12,450 | 10/24/2023 |
4.1.4 | 1,101 | 10/9/2023 |
4.1.3 | 2,372 | 8/25/2023 |
4.1.2 | 1,770 | 7/23/2023 |
4.1.1 | 1,270 | 7/11/2023 |
4.1.0 | 1,452 | 7/5/2023 |
4.0.0 | 1,393 | 6/25/2023 |
3.1.10 | 1,169 | 6/19/2023 |
3.1.9 | 4,241 | 5/14/2023 |
3.1.8 | 1,558 | 4/15/2023 |
3.1.7 | 10,734 | 3/18/2023 |
3.1.6 | 1,607 | 2/14/2023 |
3.1.5 | 1,210 | 2/5/2023 |
3.1.4 | 1,328 | 1/25/2023 |
3.1.3 | 1,302 | 1/3/2023 |
3.1.2 | 1,081 | 12/29/2022 |
3.1.1 | 1,919 | 11/21/2022 |
3.1.0 | 1,276 | 11/17/2022 |
3.0.15 | 3,545 | 8/19/2022 |
3.0.14 | 4,021 | 7/18/2022 |
3.0.13 | 1,285 | 7/16/2022 |
3.0.12 | 11,674 | 7/10/2022 |
3.0.11 | 1,751 | 6/12/2022 |
3.0.10 | 3,539 | 5/24/2022 |
3.0.9 | 1,435 | 5/22/2022 |
3.0.8 | 1,338 | 5/8/2022 |
3.0.7 | 1,273 | 5/1/2022 |
3.0.6 | 2,666 | 4/14/2022 |
3.0.5 | 2,196 | 3/10/2022 |
3.0.4 | 1,268 | 3/8/2022 |
3.0.3 | 2,721 | 3/1/2022 |
3.0.2 | 4,803 | 2/27/2022 |
3.0.1 | 1,570 | 2/24/2022 |
3.0.0 | 1,490 | 2/18/2022 |
3.0.0-beta4 | 952 | 2/5/2022 |
3.0.0-beta3 | 923 | 1/31/2022 |
3.0.0-beta2 | 839 | 1/24/2022 |
3.0.0-beta1 | 900 | 1/15/2022 |
3.0.0-alpha6 | 926 | 1/7/2022 |
3.0.0-alpha5 | 953 | 1/3/2022 |
3.0.0-alpha4 | 875 | 1/1/2022 |
3.0.0-alpha3 | 878 | 12/27/2021 |
3.0.0-alpha2 | 850 | 12/21/2021 |
3.0.0-alpha1 | 927 | 12/7/2021 |
2.2.4 | 4,627 | 12/6/2021 |
2.2.3 | 3,767 | 10/8/2021 |
2.2.2 | 1,069 | 10/6/2021 |
2.2.1 | 1,119 | 10/5/2021 |
2.2.0 | 1,351 | 9/29/2021 |
2.1.3 | 2,034 | 9/22/2021 |
2.1.2 | 1,085 | 9/22/2021 |
2.1.1 | 1,115 | 9/21/2021 |
2.1.0 | 1,092 | 9/20/2021 |
2.0.11 | 1,042 | 9/15/2021 |
2.0.10 | 1,075 | 9/9/2021 |
2.0.8 | 1,299 | 9/2/2021 |
2.0.7 | 1,031 | 9/2/2021 |
2.0.6 | 1,139 | 9/1/2021 |
2.0.5 | 1,328 | 8/26/2021 |
2.0.4 | 1,021 | 8/26/2021 |
2.0.3 | 1,072 | 8/24/2021 |
2.0.2 | 1,189 | 8/18/2021 |
2.0.1 | 1,063 | 8/13/2021 |
2.0.0 | 1,025 | 8/12/2021 |
2.0.0-beta3 | 879 | 8/9/2021 |
2.0.0-beta2 | 923 | 7/26/2021 |
2.0.0-beta1 | 977 | 7/9/2021 |
1.5.0-beta4 | 1,016 | 6/7/2021 |
1.5.0-beta3 | 936 | 5/26/2021 |
1.5.0-beta2 | 935 | 5/6/2021 |
1.5.0-beta1 | 903 | 4/30/2021 |
1.4.3 | 8,051 | 5/4/2021 |
1.4.2 | 1,763 | 4/28/2021 |
1.4.1 | 1,219 | 4/19/2021 |
1.4.0 | 1,233 | 4/12/2021 |
1.3.2 | 1,192 | 3/30/2021 |
1.3.1 | 1,982 | 3/1/2021 |
1.3.0 | 1,330 | 3/1/2021 |
1.2.3 | 1,621 | 1/22/2021 |
1.2.2 | 1,501 | 1/14/2021 |
1.2.1 | 1,349 | 12/22/2020 |
1.2.0 | 1,202 | 12/21/2020 |
1.1.9 | 1,244 | 12/11/2020 |
1.1.8 | 2,344 | 11/19/2020 |
1.1.7 | 1,310 | 11/9/2020 |
1.1.6 | 1,246 | 11/9/2020 |
1.1.5 | 2,306 | 10/8/2020 |
1.1.4 | 1,314 | 10/8/2020 |
1.1.3 | 1,833 | 8/28/2020 |
1.1.2 | 1,303 | 8/12/2020 |
1.1.1 | 1,344 | 7/21/2020 |
1.1.0 | 1,282 | 7/20/2020 |
1.0.8 | 1,472 | 6/21/2020 |
1.0.7 | 1,283 | 6/16/2020 |
1.0.6 | 1,279 | 6/7/2020 |
1.0.5 | 7,933 | 3/3/2020 |
1.0.4 | 1,391 | 1/27/2020 |
1.0.3 | 2,061 | 11/12/2019 |
1.0.2 | 1,363 | 10/24/2019 |
1.0.1 | 1,301 | 10/23/2019 |
1.0.0 | 1,289 | 10/23/2019 |
0.0.4 | 1,271 | 10/15/2019 |
0.0.3 | 1,347 | 9/24/2019 |
0.0.2 | 1,228 | 9/10/2019 |
0.0.1 | 1,321 | 8/29/2019 |
4.3.0-beta2 - Fix for reconnecting authenticated websocket connections