Bybit.Net 3.8.2

dotnet add package Bybit.Net --version 3.8.2
NuGet\Install-Package Bybit.Net -Version 3.8.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Bybit.Net" Version="3.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bybit.Net --version 3.8.2
#r "nuget: Bybit.Net, 3.8.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Bybit.Net as a Cake Addin
#addin nuget:?package=Bybit.Net&version=3.8.2

// Install Bybit.Net as a Cake Tool
#tool nuget:?package=Bybit.Net&version=3.8.2

.Bybit.Net Bybit.Net

.NET License

Bybit.Net is a strongly typed client library for accessing the Bybit REST and Websocket API. All data is mapped to readable models and enum values. Additional features include an implementation for maintaining a client side order book, easy integration with other exchange client libraries and more.

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

Nuget version Nuget downloads

dotnet add package Bybit.Net

How to use

REST Endpoints

// Get the ETH/USDT ticker via rest request
var restClient = new BybitRestClient();
var tickerResult = await restClient.V5Api.ExchangeData.GetSpotTickersAsync("ETHUSDT");
var lastPrice = tickerResult.Data.List.First().LastPrice;

Websocket streams

// Subscribe to ETH/USDT ticker updates via the websocket API
var socketClient = new BybitSocketClient();
var tickerSubscriptionResult = socketClient.V5SpotApi.SubscribeToTickerUpdatesAsync("ETHUSDT", (update) =>
{
	var lastPrice = update.Data.LastPrice;
});

For information on the clients, dependency injection, response processing and more see the Bybit.Net documentation, CryptoExchange.Net documentation, or have a look at the examples here or here.

CryptoExchange.Net

Bybit.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 Nuget version
BingX JKorf/BingX.Net Nuget version
Bitfinex JKorf/Bitfinex.Net Nuget version
Bitget JKorf/Bitget.Net Nuget version
CoinEx JKorf/CoinEx.Net Nuget version
CoinGecko JKorf/CoinGecko.Net Nuget version
Huobi/HTX JKorf/Huobi.Net Nuget version
Kraken JKorf/Kraken.Net Nuget version
Kucoin JKorf/Kucoin.Net Nuget version
Mexc JKorf/Mexc.Net Nuget version
OKX JKorf/OKX.Net Nuget version

Discord

Nuget version
A Discord server is available here. Feel free to join for discussion and/or questions around the CryptoExchange.Net and implementation libraries.

Supported functionality

V5 Api

API Supported Location
Market restClient.V5Api.ExchangeData
Trade restClient.V5Api.Account / restClient.V5Api.Trading
Position restClient.V5Api.Account / restClient.V5Api.Trading
Pre-Upgrade X
Account restClient.V5Api.Account
Asset restClient.V5Api.Account
Spot Leverage Token restClient.V5Api.ExchangeData / restClient.V5Api.Trading
Spot Margin Trade (UTA) restClient.V5Api.Account
Institutional Loan X
Broken restClient.V5Api.Account
Websocket Stream Public socketClient.V5SpotApi / socketClient.V5LinearApi / socketClient.V5InverseApi / socketClient.V5OptionsApi
Websocket Stream Private socketClient.V5PrivateApi

V3 Derivatives

API Supported Location
Rest Market restClient.DerivativesApi.ExchangeData
Rest Contract restClient.DerivativesApi.Account / restClient.DerivativesApi.Trading
Websocket Public restClient.V5Api.DerivativesApi
Websocket Private restClient.V5Api.DerivativesApi

V3 Spot

API Supported Location
Rest Market data restClient.SpotV3Api.ExchangeData
Rest Trade restClient.SpotV3Api.Trading
Rest Wallet Balance restClient.SpotV3Api.Account
Rest Leveraged Token X
Rest Cross Margin Trade restClient.SpotV3Api.Trading
Rest Institutional Loan X
Websocket Public restClient.SpotV3Api
Websocket Private restClient.SpotV3Api

V3 Account Asset

API Supported Location
* X

V3 Tax

API Supported Location
* X

Support the project

I develop and maintain this package on my own for free in my spare time, any support is greatly appreciated.

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

Alternatively, sponsor me on Github using Github Sponsors.

Release notes

  • Version 3.8.2 - 18 Apr 2024

  • Version 3.8.1 - 10 Apr 2024

    • Added ClientOrderId to BybitCancelOrderRequest model
    • Changed Quantity property in BybitEditOrderRequest model to be nullable
  • Version 3.8.0 - 28 Mar 2024

    • Added HongKong and The Netherlands environments and API addresses
    • Added PublishTime to V5Api.ExchangeData.GetAnnouncementsAsync model
    • Updated websocket V5OptionsApi.SubscribeToTradeUpdatesAsync and rest V5Api.ExchangeData.GetTradeHistoryAsync models
    • Marked V5Api.Account.SetRiskLimitAsync as deprecated
    • Fixed V5Api.ExchangeData.GetLeverageTokensAsync deserialization issue
    • Fixed V5Api options websocket subscriptions
  • Version 3.7.1 - 24 Mar 2024

  • Version 3.7.0 - 16 Mar 2024

  • Version 3.6.1 - 11 Mar 2024

    • Fixed V5Api websocket subscription missing initial snapshot updates
  • Version 3.6.0 - 11 Mar 2024

    • Added V5Api.ExchangeData.GetLongShortRatioAsync endpoint
    • Added V5Api.Trading.ConfirmRiskLimitAsync endpoint
    • Added V5Api.Account.SetSpotHedgingModeAsync endpoint
    • Added V5Api.Account.RepayLiabilitiesAsync endpoint
    • Added TakeProfitStopLossMode parameter to V5Api.Trading.EditMultipleOrdersAsync endpoint
    • Added CloseOnTrigger parameter to V5Api.Trading.PlaceMultipleOrdersAsync endpoint
    • Added startTime/endTime parameters to V5Api.Trading.GetSettlementHistoryAsync and V5Api.Trading.GetDeliveryHistoryAsync endpoints
    • Updated BybitApiKeyInfo, BybitBorrowHistory, BybitBorrowQuota, BybitBalance, BybitPosition model
    • Updated StopOrderType, TradeType, TransactionLogType, WithdrawalStatus enum values
    • Fixed incorrect response model V5Api.Trading.SetDisconnectCancelAllAsync endpoint
  • Version 3.5.2 - 28 Feb 2024

    • Fixed V5Api.Trading.GetPositionAsync model deserialization
  • Version 3.5.1 - 27 Feb 2024

    • Updated V5 Linear/Inverse Symbol model
    • Fixed PositionIdx property in V5 order updates
  • Version 3.5.0 - 26 Feb 2024

    • Fixed BybitSpotUserTradeV3 model mapping
    • Added Id to BybitTransactionLog model
    • Updated BybitPosition model
    • Updated Spot V3 and V5 order models
    • Removed deprecated endpoints and models
  • Version 3.4.0 - 25 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?tab=readme-ov-file#release-notes
    • Fixed issue in DI registration causing http client to not be correctly injected
    • Combined update and snapshot handlers for orderbook updates in favor of the UpdateType in the DataEvent wrapper
    • Removed redundant BybitRestClient constructor overload
    • Removed deprecated socket APIs
    • Updated some namespaces
  • Version 3.3.0 - 19 Jan 2024

    • Added V5Api.Account.GetBrokerEarningsAsync endpoint
    • Added V5Api.Account.GetBrokerAccountInfoAsync endpoint
    • Added V5Api.Account.GetInternalDepositsAsync endpoint
    • Added V5Api.Account.SetMultipleCollateralAssetsAsync endpoint
    • Added PricePercentageFilter to V5Api.ExchangeData.GetSpotSymbolsAsync model
    • Updated various endpoint parameters and models
  • Version 3.2.7 - 16 Jan 2024

    • Added V5Api.Account.SetCollateralAssetAsync endpoint
    • Added marketUnit parameter to V5Api.Trading.PlaceOrderAsync endpoint
    • Updated BybitAccountInfo model
  • Version 3.2.6 - 12 Dec 2023

    • Fixed V5 BybitOrderId model ClientOrderId deserialization
    • Added missing feeType parameter to V5 Account.WithdrawAsync endpoint
  • Version 3.2.5 - 03 Dec 2023

    • Updated CryptoExchange.Net
  • Version 3.2.4 - 02 Dec 2023

    • Added missing SelfMatchPreventType parameter to V5.Trading.PlaceOrderAsync
    • Fixed deserialization issue in V5 UserTrade subscription
  • Version 3.2.3 - 28 Nov 2023

    • Added missing FeeAsset property order updates
    • Fixed UnifiedMarginStatus deserialization AccountInfo
    • Fixed ClientOrderId deserialization batch order results
  • Version 3.2.2 - 30 Oct 2023

    • Fixed triggerDirection parameter serialization on V5 PlaceOrder endpoint
    • Fixed typo in BybitAccountTypeInfo model name
  • Version 3.2.1 - 24 Oct 2023

    • Fix order parameter serialization
    • Updated CryptoExchange.Net
  • Version 3.2.0 - 12 Oct 2023

    • Added V5 SubAccount endpoints
    • Added V5 ApiKey endpoints
    • Added LeverageToken endpoints
    • Added notice of deprecation to old endpoints
    • Updated Referer header
  • Version 3.1.3 - 09 Oct 2023

    • Updated CryptoExchange.Net version
    • Fixed ReceiveWindow not respecting client option
    • Updated BoolConverter to shared CryptoExchange.Net implementation
  • Version 3.1.2 - 29 Sep 2023

    • Added V5 Inverse websocket API
    • Fix V5 SubscribeToLiquidationUpdatesAsync
    • Fix V5Api.Account.GetCollateralInfoAsync deserialization
  • Version 3.1.1 - 20 Sep 2023

    • Added ISpotClient/CommonSpotClient implementation
    • Added AddOrReduceMarginAsync endpoint
    • Added Spot Margin endpoints
  • Version 3.1.0 - 05 Sep 2023

    • Added V5 Trading.PlaceMultipleOrdersAsync, V5 Trading.EditMultipleOrdersAsync and V5 Trading.CancelMultipleOrdersAsync endpoints
    • Fixed V5 Account.CreateUniversalTransferAsync parameter
    • Fixed V5 Account.GetWithdrawalsAsync deserialization
  • Version 3.0.8 - 02 Sep 2023

    • Fixed V5.Account.GetAssetBalanceAsync deserialization
    • Added missing V5 Position model properties
  • Version 3.0.7 - 25 Aug 2023

    • Updated CryptoExchange.Net
  • Version 3.0.6 - 25 Aug 2023

    • Changed V5 API body content type from formdata to json
  • Version 3.0.5 - 05 Aug 2023

    • Fixed default values V5 PlaceOrder parameters
  • Version 3.0.4 - 02 Aug 2023

    • Removed incorrect checks for order id parameters in V5 trading endpoints
    • Added Start/Endtime to V5 order history
    • Added SL/TP parameters to V5 PlaceOrder endpoint
    • Added SL/TP parameters to contract PlaceOrder endpoint
    • Fixed nullability of position models
  • Version 3.0.3 - 25 Jul 2023

    • Added missing MarginMode enum value
    • Fix for position V5 deserialization
  • Version 3.0.2 - 23 Jul 2023

    • Fixed AveragePrice not set on V5 position update
    • Fixed multiple decimal field nullability
    • Fixed V5 spot symbol MarginTrading incorrect property name
    • Added missing tpslMode on V5 PlaceOrder
    • Fixed typo in Deactivated V5 order status mapping
    • Fixed incorrect filter types in V5 LinearInverse symbol model
  • Version 3.0.1 - 11 Jul 2023

    • Fixed invalid V5 GetOrderHistory endpoint check
    • Fixed bool parameters V5 PlaceOrder
    • Removed Liquidation stream from V5 SpotApi
  • Version 3.0.0 - 25 Jun 2023

    • Updated CryptoExchange.Net to version 6.0.0
    • Renamed BybitClient to BybitRestClient
    • Renamed **Streams to **Api on the BybitSocketClient
    • Updated endpoints to consistently use a base url without any path as basis to make switching environments/base urls clearer
    • Added IBybitOrderBookFactory and implementation for creating order books
    • Updated dependency injection register method (AddBybit)
    • Updated V5 socket API kline update topic to include the interval
    • Added CopyTrading SetTradingStopAsync endpoint
    • Fixed V5 GetMarginAccountInfoAsync endpoint
  • Version 2.0.5 - 19 Jun 2023

    • Fixed V5 GetLinearInverseTickersAsync response model nullability
    • Added missing parameters V5 SetTradingStopAsync
    • Fixed incorrect V5 GetOrderAsync check
  • Version 2.0.4 - 02 Jun 2023

    • Fixed deserialization error on V5 Inverse ticker model
    • Fixed V5 GetOrder incorrect validation check
  • Version 2.0.3 - 22 May 2023

    • Fixed category parameter not being send on V5 GetFreeRateAsync
    • Fixed CreateTime deserialization on Spot V3 order model
  • Version 2.0.2 - 14 May 2023

    • Fixed V5 GetTransactionHistory response model
    • Fixed V5 Account Withdraw incorrect parameter name
    • Fixed V5 Trading PlaceOrder incorrect position parameter
  • Version 2.0.1 - 25 Apr 2023

    • Fixed V5.Account.CreateInternalTransfer endpoint
  • Version 2.0.0 - 14 Apr 2023

    • Added V5 API implementation
    • Fixed contract PlaceOrder parameters
  • Version 1.5.2 - 18 Mar 2023

    • Fixed SpotV3 GetBalances
    • Fixed SetPositionMode on contract API
    • Updated CryptoExchange.Net
  • Version 1.5.1 - 14 Feb 2023

    • Updated CryptoExchange.Net
  • Version 1.5.0 - 05 Feb 2023

    • Fixed error parsing for list results
    • Fixed V3 GetUserTradesAsync deserialization
  • Version 1.4.0 - 29 Dec 2022

    • Added DerivativesV3 API
    • Fixed spot PlaceBorrowOrderAsync deserialization
    • Added missing properties BybitApiKeyInfo
  • Version 1.3.1 - 12 Dec 2022

    • Added General.Transfer.GetAssetBalanceAsync endpoint
    • Spot V3 usability improvements
    • Fixed CopyTradeApi PlaceOrderAsync
    • Added missing spot order status mapping
    • Added interval to SubscribeToKlineUpdatesAsync topic
  • Version 1.3.0 - 17 Nov 2022

    • Updated CryptoExchange.Net
    • Fixed SpotV3 GetUserTrades endpoint
  • Version 1.2.3 - 28 Oct 2022

    • Fixed timestamping inconsistencies between different APIs
  • Version 1.2.2 - 28 Oct 2022

    • Fixed SpotV3 API error parsing
    • Fixed CopyTrading API using wrong timestamp for synchronizing timestamps
  • Version 1.2.1 - 15 Oct 2022

    • Added support for SL/TP updates via websocket in Spot API
    • Added support for switching PositionMode per asset
    • Fix for missing properties on order model
    • Fixed deserialization issue due to nullability on spot GetTickersAsync API
  • Version 1.2.0 - 11 Oct 2022

    • Added support for all Spot API versions (rest V1 and V3, socket V1, V2 and V3)
    • Fix for Usd perpetual futures conditional order parsing
    • Upped the expiration time for websocket authentication
  • Version 1.1.2 - 28 Sep 2022

    • Fixed SubscribeToTickerUpdatesAsync OpenInterest value parsing
    • Added missing ReduceOnly field to BybitConditionalOrder model
    • Fixed documentation links
  • Version 1.1.1 - 19 Aug 2022

    • Added TakeProfitPrice, StopLossPrice and TriggerPrice to BybitConditionalOrder model
    • Fixed WithdrawalAsync quantity parameter being wrongly named
    • Fixed GetBorrowInterestAndQuotaAsync not being signed
  • Version 1.1.0 - 31 Jul 2022

    • Added Deposit/Withdrawal endpoints
    • Added CopyTrading Api
    • Added UniversalTransfer endpoints
  • Version 1.0.10 - 18 Jul 2022

    • Added cross-margin endpoints
    • Fixed websocket reconnect loop issue
    • Updated some spot API models
    • Updated CryptoExchange.Net
  • Version 1.0.9 - 16 Jul 2022

    • Updated CryptoExchange.Net
  • Version 1.0.8 - 10 Jul 2022

    • Fixed InversePerpetual stop order stream incorrect topic
    • Fixed rate limit deserialization
    • Fixed typo in FreeQuantity property in Usd Position model
  • Version 1.0.7 - 10 Jul 2022

    • Added missing PartialStopLoss to StopOrderType
    • Fixed 1 month kline being serialized as 1 minute
    • Updated CryptoExchange.Net
  • Version 1.0.6 - 12 Jun 2022

    • Added missing price properties on usdt perpetual conditional order model
    • Updated CryptoExchange.Net
  • Version 1.0.5 - 24 May 2022

    • Updated CryptoExchange.Net
  • Version 1.0.4 - 22 May 2022

    • Fixed socket subscription error feedback
    • Updated CryptoExchange.Net
  • Version 1.0.3 - 11 May 2022

    • Fixed Usd perpetual real time endpoint urls
    • Fixed BybitUserTrades deserialization
  • Version 1.0.2 - 08 May 2022

    • Removed unneeded receiveWindow parameter unauthenticated requests
    • Fixed receiveWindow parameter for futures apis
    • Added missing PositionMode property on USD futures position
    • Fixed incorrect stop_order topic for usd perpetual StopOrder subscription
    • Updated CryptoExchange.Net
  • Version 1.0.1 - 01 May 2022

    • Updated CryptoExchange.Net which fixed an timing related issue in the websocket reconnection logic
    • Added seconds representation to KlineInterval enum
    • Fixed deserialization of orders with fee of null
    • Fixed SetLeverageAsync deserialization error on return null result
    • Added missing Asset property on socket Balance update
  • Version 1.0.0 - 14 Apr 2022

    • Fixed Transfer API
    • Added missing SpotOrderTypes
    • Added Referer option in client options to set x-referer header
    • Updated CryptoExchange.Net
  • Version 0.0.9 - 17 Mar 2022

    • Split USD Perpetual/Inverse API order models to properly map Base/QuoteQuantity properties
  • Version 0.0.8 - 16 Mar 2022

    • Fixed Bids/Asks being reversed in spot order book updates (also impacted BybitSpotSymbolOrderBook)
    • Fixed swapped quantity properties on models
  • Version 0.0.7 - 14 Mar 2022

    • Added CancelMultipleOrdersAsync Spot API endpoint
    • Fixed swapped QuoteQuantityFilled/BaseQuantityFilled order model properties
    • Fixed LimitMaker order type (de)serialization
  • Version 0.0.6 - 10 Mar 2022

    • Updated CryptoExchange.Net
  • Version 0.0.5 - 08 Mar 2022

    • Fixed typo in BybitBalanceUpdate model
    • Updated CryptoExchange.Net
  • Version 0.0.4 - 01 Mar 2022

    • Updated CryptoExchange.Net improving the websocket reconnection robustness
  • Version 0.0.3 - 27 Feb 2022

    • Updated CryptoExchange.Net to fix timestamping issue when request is ratelimiter
  • Version 0.0.2 - 24 Feb 2022

    • Updated CryptoExchange.Net
  • Version 0.0.1 - 18 Feb 2022

    • Initial release
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Bybit.Net:

Package Downloads
exchange-client-1

Exchange client gather all exchanges via jkorf and it uses common client sources

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Bybit.Net:

Repository Stars
JKorf/CryptoExchange.Net
Base for exchanges
Version Downloads Last updated
3.8.2 0 4/18/2024
3.8.1 238 4/10/2024
3.8.0 411 3/28/2024
3.7.1 288 3/24/2024
3.7.0 466 3/16/2024
3.6.1 426 3/11/2024
3.6.0 114 3/11/2024
3.5.2 609 2/28/2024
3.5.1 169 2/27/2024
3.5.0 158 2/26/2024
3.4.0 393 2/25/2024
3.4.0-beta1 219 2/6/2024
3.3.0 2,676 1/19/2024
3.2.7 323 1/16/2024
3.2.6 1,490 12/12/2023
3.2.5 628 12/3/2023
3.2.4 298 12/2/2023
3.2.3 940 11/28/2023
3.2.2 2,466 10/30/2023
3.2.1 624 10/24/2023
3.2.0 710 10/12/2023
3.1.3 938 10/9/2023
3.1.2 603 9/29/2023
3.1.1 620 9/20/2023
3.1.0 1,698 9/5/2023
3.0.8 452 9/2/2023
3.0.7 697 8/25/2023
3.0.6 499 8/25/2023
3.0.5 1,159 8/5/2023
3.0.4 554 8/2/2023
3.0.3 1,270 7/25/2023
3.0.2 591 7/23/2023
3.0.1 906 7/11/2023
3.0.0 1,500 6/25/2023
2.0.5 943 6/19/2023
2.0.4 841 6/2/2023
2.0.3 1,459 5/22/2023
2.0.2 619 5/14/2023
2.0.1 1,066 4/25/2023
2.0.0 1,318 4/14/2023
1.5.2 1,967 3/18/2023
1.5.1 1,056 2/14/2023
1.5.0 3,540 2/5/2023
1.4.0 1,032 12/29/2022
1.3.1 800 12/12/2022
1.3.0 1,895 11/17/2022
1.2.3 996 10/28/2022
1.2.2 715 10/28/2022
1.2.1 1,046 10/15/2022
1.2.0 766 10/11/2022
1.1.2 934 9/28/2022
1.1.1 1,214 8/19/2022
1.1.0 1,144 7/31/2022
1.0.10 869 7/18/2022
1.0.9 857 7/16/2022
1.0.8 1,650 7/10/2022
1.0.7 783 7/10/2022
1.0.6 1,073 6/12/2022
1.0.5 1,318 5/24/2022
1.0.4 1,543 5/22/2022
1.0.3 913 5/11/2022
1.0.2 888 5/8/2022
1.0.1 1,214 5/1/2022
1.0.0 1,051 4/14/2022
0.0.9 962 3/17/2022
0.0.8 760 3/16/2022
0.0.7 788 3/14/2022
0.0.6 796 3/10/2022
0.0.5 757 3/8/2022
0.0.4 2,395 3/1/2022
0.0.3 779 2/27/2022
0.0.2 804 2/24/2022
0.0.1 799 2/18/2022
0.0.1-beta9 513 2/5/2022
0.0.1-beta8 518 2/2/2022
0.0.1-beta7 492 1/30/2022
0.0.1-beta6 482 1/30/2022
0.0.1-beta5 513 1/25/2022
0.0.1-beta4 490 1/24/2022
0.0.1-beta3 489 1/24/2022
0.0.1-beta2 611 1/18/2022
0.0.1-beta10 601 2/7/2022
0.0.1-beta1 456 1/15/2022
0.0.1-alpha7 462 1/13/2022
0.0.1-alpha6 518 1/7/2022
0.0.1-alpha5 551 1/3/2022
0.0.1-alpha4 508 1/1/2022
0.0.1-alpha3 484 12/27/2021
0.0.1-alpha2 573 12/21/2021
0.0.1-alpha1 530 12/7/2021