{"repo":"JKorf/Binance.Net","free":true,"listed":false,"github":"https://github.com/JKorf/Binance.Net","clone":"git clone https://github.com/JKorf/Binance.Net.git","description":"C#/.NET client library for the Binance.com cryptocurrency exchange REST and WebSocket APIs, supporting Spot and Futures trading and market data with strongly typed models.","language":"C#","stars":1174,"topics":["api-wrapper","binance","binance-api","binance-bot","binance-exchange","binance-net","binance-sdk","binance-trading-bot","binancenet","crypto","cryptocurrency","cryptocurrency-exchanges","csharp","dotnet","exchange","tradeapi"],"license":"MIT","category":"trading_api_wrapper","readme_excerpt":"# ![.Binance.Net](https://raw.githubusercontent.com/JKorf/Binance.Net/master/Binance.Net/Icon/icon.png) Binance.Net  \n\n[![.NET](https://img.shields.io/github/actions/workflow/status/JKorf/Binance.Net/dotnet.yml?style=for-the-badge)](https://github.com/JKorf/Binance.Net/actions/workflows/dotnet.yml) ![License](https://img.shields.io/github/license/JKorf/Binance.Net?style=for-the-badge) ![Since](https://img.shields.io/badge/since-2017-brightgreen?style=for-the-badge\n)\n\n[![Docs](https://img.shields.io/badge/Docs-Binance.Net-1b7f50?style=for-the-badge)](https://cryptoexchange.jkorf.dev/docs/exchange-clients?library=Binance.Net)\n\nBinance.Net is a strongly typed client library for accessing the [Binance REST and Websocket API](https://binance-docs.github.io/apidocs/#change-log). \n\n## Features\n* Response data is mapped to descriptive models\n* Input parameters and response values are mapped to discriptive enum values where possible\n* High performance\n* Automatic websocket (re)connection management \n* Client side rate limiting \n* Client side order book implementation\n* Support for managing different accounts\n* Extensive logging\n* Support for different environments (binance.com, binance.us, testnet)\n* Easy integration with other exchange client based on the CryptoExchange.Net base library\n* Native AOT support\n\n## Documentation\n\nThe [Binance.Net documentation](https://cryptoexchange.jkorf.dev/docs/exchange-clients?library=Binance.Net) is the main resource for installing, configuring, and using the library.\n\n| Resource | Description |\n|--|--|\n| [Client guide](https://cryptoexchange.jkorf.dev/docs/exchange-clients?library=Binance.Net) | Installation, REST and WebSocket clients, authentication, dependency injection, error handling, and advanced features |\n| [Examples](https://cryptoexchange.jkorf.dev/docs/exchange-clients/examples?library=Binance.Net) | Common REST and WebSocket operations |\n| [API reference](https://cryptoexchange.jkorf.dev/docs/exchange-clients/reference?library=Binance.Net) | Client interfaces, methods, and properties |\n| [Shared API guide](https://cryptoexchange.jkorf.dev/docs/shared-api) | Common interfaces and models for working with multiple exchanges |\n\n## For AI Coding Assistants\n\nThis library provides first-class support for AI coding assistants. The relevant skill files are in this repository:\n\n- **Agents**: `AGENTS.md` (auto-detected at repo root)\n- **Cursor**: `.cursor/rules/binance-net.mdc`\n- **GitHub Copilot**: `.github/copilot-instructions.md`\n- **Other tools** (Windsurf, Codex, Continue, Aider, etc.): `llms.txt` at repo root\n- **API quick map**: `docs/ai-api-map.md`\n- **Compilable examples**: `Examples/ai-friendly/`\n\nSee [cryptoexchange-skills-hub](https://github.com/JKorf/cryptoexchange-skills-hub) for installable skills.\n\n**Quick prompt to verify your assistant is using these:**\n> \"Show me a minimal example of placing a limit buy order on Binance Spot using Binance.Net, including authentication setup.\"\n\nThe expected output should use `BinanceRestClient`, `BinanceCredentials`, and the `HttpResult` pattern.\n\n## Benchmark\nPerformance is a core focus. For a benchmark comparing Binance.Net performance to CCXT and Binance.Api, see [docs/binance-net-benchmark.md](docs/binance-net-benchmark.md).\n\n## Supported Frameworks\nThe 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.\n\n|.NET implementation|Version Support|\n|--|--|\n|.NET Core|`2.0` and higher|\n|.NET Framework|`4.6.1` and higher|\n|Mono|`5.4` and higher|\n|Xamarin.iOS|`10.14` and higher|\n|Xamarin.Android|`8.0` and higher|\n|UWP|`10.0.16299` and higher|\n|Unity|`2018.1` and higher|\n\n## Install the library\n\n### NuGet \n[![NuGet version](https://img.shields.io/nuget/v/binance.net.svg?style=for-the-badge)](https://www.nuget.org/packages/Binance.Net)  [![Nuget downloads](https://img.shields.io/nuget/dt/Binance.Net.svg?style=for-the-badge)](https://www.nuget.org/packages/Binance.Net)\n\n\tdotnet add package Binance.Net\n\t\n### GitHub packages\nBinance.Net is available on [GitHub packages](https://github.com/JKorf/Binance.Net/pkgs/nuget/Binance.Net). You'll need to add `https://nuget.pkg.github.com/JKorf/index.json` as a NuGet package source.\n\n### Download release\n[![GitHub Release](https://img.shields.io/github/v/release/JKorf/Binance.Net?style=for-the-badge&label=GitHub)](https://github.com/JKorf/Binance.Net/releases)\n\nThe NuGet package files are added along side the source with the latest GitHub release which can found [here](https://github.com/JKorf/Binance.Net/releases).\n\n\t\n## How to use\n*Basic request:*\n```csharp\n// Get the ETH/USDT ticker via rest request\nvar restClient = new BinanceRestClient();\nvar tickerResult = await restClient.SpotApi.ExchangeData.GetTickerAsync(\"ETHUSDT\");\nvar lastPrice = tickerResult.Data.LastPrice;\n```\n\n*Place order:*\n```csharp\nvar restClient = new BinanceRestClient(opts => {\n\topts.ApiCredentials = new BinanceCredentials(\"APIKEY\", \"APISECRET\");\n});\n\n// Place Limit order to go long for 0.1 ETH at 2000\nvar orderResult = await restClient.UsdFuturesApi.Trading.PlaceOrderAsync(\n    \"ETHUSDT\",\n    OrderSide.Buy,\n    FuturesOrderType.Limit,\n    0.1m,\n    2000,\n    timeInForce: TimeInForce.GoodTillCanceled,\n    positionSide: PositionSide.Long);\n```\n\n*WebSocket subscription:*\n```csharp\n// Subscribe to ETH/USDT ticker updates via the websocket API\nvar socketClient = new BinanceSocketClient();\nvar tickerSubscriptionResult = socketClient.SpotApi.ExchangeData.SubscribeToTickerUpdatesAsync(\"ETHUSDT\", (update) => \n{\n  var lastPrice = update.Data.LastPrice;\n});\n```\n\n*Get started and request the last price of a symbol in 40 seconds*  \n\n<img src=\"https://github.com/JKorf/Binance.Net/blob/f74f262151f21b123deecd9b39a717458a18f6ff/docs/Binance.gif\" width=\"600\" />\n\nFor more examples and explanations, continue with the [Binance.Net documentation](https://cryptoexchange.jkorf.dev/docs/exchange-clients?library=Binance.Net) or browse the [compilable repository examples](https://github.com/JKorf/Binance.Net/tree/master/Examples).\n\n## Shared / unified API\n\nThe CryptoExchange.Net [Shared APIs](https://cryptoexchange.jkorf.dev/docs/shared-api) provide exchange-agnostic, unified interfaces for common operations such as retrieving tickers, order books and balances, placing orders, and subscribing to market updates.\n\nThis allows the same application code to work with different exchange libraries. Each Binance API surface exposes its supported shared functionality through a `SharedClient` property. Because support differs between exchanges and API surfaces, call `Discover()` to inspect the available trading modes, environments, endpoints, and subscriptions at runtime.\n\n### Supported shared interfaces\n\n| API | Type | Supported interfaces |\n|--|--|--|\n| `SpotApi` | REST | `IAssetsRestClient`, `IBalanceRestClient`, `IBookTickerRestClient`, `IDepositRestClient`, `IFeeRestClient`, `IKlineRestClient`, `IOrderBookRestClient`, `IRecentTradeRestClient`, `ISpotOrderClientIdRestClient`, `ISpotOrderRestClient`, `ISpotSymbolRestClient`, `ISpotTickerRestClient`, `ISpotTriggerOrderRestClient`, `ITradeHistoryRestClient`, `ITransferRestClient`, `IWithdrawalRestClient`, `IWithdrawRestClient` |\n| `SpotApi` | WebSocket | `IBalanceSocketClient`, `IBookTickerSocketClient`, `IKlineSocketClient`, `IOrderBookSocketClient`, `ISpotOrderSocketClient`, `ITickerSocketClient`, `ITickersSocketClient`, `ITradeSocketClient` |\n| `UsdFuturesApi` | REST | `IBalanceRestClient`, `IBookTickerRestClient`, `IFeeRestClient`, `IFundingRateRestClient`, `IFuturesOrderClientIdRestClient`, `IFuturesOrderRestClient`, `IFuturesSymbolRestClient`, `IFuturesTickerRestClient`, `IFuturesTpSlRestClient`, `IFuturesTriggerOrderRestClient`, `IIndexPriceKlineRestClient`, `IKlineRestClient`, `ILeverageRestClient`, `IMarkPriceKlineRestClient`, `IOpenInterestRestClient`, `IOrderBookRestClient`, `IPositionModeRestClient`, `IRecentTradeRestClient`, `ITradeHistoryRestClient` |\n| `UsdFuturesApi` | WebSocket | `IBalanceSocketClient`, `IBookTickerSocketClient`, `IFuturesOrderSocketClient`, `IKlineSocketClient`, `IOrderBookSocketClient`, `IPositionSocketClient`, `ITickerSocketClient`, `ITickersSocketClient`, `ITradeSocketClient` |\n| `CoinFuturesApi` | REST | `IBalanceRestClient`, `IBookTickerRestClient`, `IFeeRestClient`, `IFundingRateRestClient`, `IFuturesOrderClientIdRestClient`, `IFuturesOrderRestClient`, `IFuturesSymbolRestClient`, `IFuturesTickerRestClient`, `IFuturesTpSlRestClient`, `IFuturesTriggerOrderRestClient`, `IIndexPriceKlineRestClient`, `IKlineRestClient`, `ILeverageRestClient`, `IMarkPriceKlineRestClient`, `IOpenInterestRestClient`, `IOrderBookRestClient`, `IPositionModeRestClient`, `IRecentTradeRestClient`, `ITradeHistoryRestClient` |\n| `CoinFuturesApi` | WebSocket | `IBalanceSocketClient`, `IBookTickerSocketClient`, `IFuturesOrderSocketClient`, `IKlineSocketClient`, `IOrderBookSocketClient`, `IPositionSocketClient`, `ITickerSocketClient`, `ITickersSocketClient`, `ITradeSocketClient` |\n\n### Discover supported functionality\n\n```csharp\nvar sharedClient = new BinanceRestClient().SpotApi.SharedClient;\nvar clientInfo = sharedClient.Discover();\n\nConsole.WriteLine(clientInfo);\n```\n\n### Example\n\n```csharp\nusing Binance.Net.Clients;\nusing CryptoExchange.Net.SharedApis;\n\nvar sharedClient = new BinanceRestClient().SpotApi.SharedClient;\nISpotTickerRestClient tickerClient = sharedClient;\n\nvar symbol = new SharedSymbol(TradingMode.Spot, \"ETH\", \"USDT\");\nvar result = await tickerClient.GetSpotTickerAsync(\n    new GetTickerRequest(symbol));\n\nif (!result.Success)\n{\n    Console.WriteLine(result.Error);\n    return;\n}\n\nConsole.WriteLine(result.Data.LastPrice);\n```\n\nThe request and response models belong to `CryptoExchange.Net.SharedApis`, so the same pattern can be used with another exchange's `SharedClient`.\n\n## CryptoExchange.Net\nBinance.Net is based on the [CryptoExchange.Net](https://github.com/JKorf/CryptoExc","default_branch":"master","files":1354,"tree":[".cursor/rules/binance-net.mdc",".gitattributes",".github/FUNDING.yml",".github/ISSUE_TEMPLATE/bug_report.md",".github/copilot-instructions.md",".github/workflows/dotnet.yml",".gitignore","AGENTS.md","Benchmark/Client/Binance.Net.Benchmark.Client.csproj","Benchmark/Client/LibraryBenchmarksRest.cs","Benchmark/Client/LibraryBenchmarksSocket.cs","Benchmark/Client/LibraryComparisonBenchmarksRest.cs","Benchmark/Client/LibraryComparisonBenchmarksSocket.cs","Benchmark/Client/Program.cs","Benchmark/Server/Binance.Net.Benchmark.Server.csproj","Benchmark/Server/Controllers/RestController.cs","Benchmark/Server/Controllers/WsController.cs","Benchmark/Server/Program.cs","Benchmark/Server/appsettings.json","Binance.Net.UnitTests/Binance.Net.UnitTests.csproj","Binance.Net.UnitTests/BinanceClientTests.cs","Binance.Net.UnitTests/BinanceRestIntegrationTests.cs","Binance.Net.UnitTests/BinanceSocketIntegrationTests.cs","Binance.Net.UnitTests/Documentation/AiExampleCompileTests.cs","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/ChangeInitialLeverage.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/ChangeMarginType.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetAccountInfo.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetBalances.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetBrackets.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetDownloadIdForTransactionHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetDownloadLinkForTransactionHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetIncomeHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetMarginChangeHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetPositionAdlQuantileEstimation.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetPositionInformation.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetPositionMode.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/GetUserCommissionRate.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/KeepAliveUserStream.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/ModifyPositionMargin.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/ModifyPositionMode.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/StartUserStream.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Account/StopUserStream.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetAggregatedTradeHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetBasis.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetBookPrices.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetContinuousContractKlines.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetExchangeInfo.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetFundingInfo.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetFundingRates.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetGlobalLongShortAccountRatio.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetIndexPriceConstituents.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetIndexPriceKlines.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetKlines.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetMarkPriceKlines.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetMarkPrices.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetOpenInterest.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetOpenInterestHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetOrderBook.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetPremiumIndexKlines.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetPrices.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetRecentTrades.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetServerTime.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetTakerBuySellVolumeRatio.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetTickers.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetTopLongShortAccountRatio.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetTopLongShortPositionRatio.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/ExchangeData/GetTradeHistory.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/CancelAllOrders.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/CancelAllOrdersAfterTimeout.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/CancelMultipleOrders.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/CancelOrder.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/GetForcedOrders.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/GetOpenOrder.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/GetOpenOrders.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/GetOrder.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/GetOrders.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/GetUserTrades.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/PlaceMultipleOrders.txt","Binance.Net.UnitTests/Endpoints/CoinFutures/Trading/PlaceOrder.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/EditPlan.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/EditPlanStatus.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetIndexInfo.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetIndexLinkedPlanPositionDetails.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetIndexLinkedPlanRebalanceHistory.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetIndexLinkedPlanRedemptionHistory.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetOneTimeTransactionStatus.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetPlanHoldings.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetPlans.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetSourceAndTargetAssets.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetSourceAssets.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetSubscriptionTransactionHistory.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetTargetAssetRois.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/GetTargetAssets.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/OneTimeTransaction.txt","Binance.Net.UnitTests/Endpoints/General/AutoInvest/RedeemIndexLinkedPlan.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/AddIpRestrictionForSubAccountApiKey.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/ChangeSubAccountApiKeyPermission.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/CreateApiKeyForSubAccount.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/CreateSubAccount.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/DeleteSubAccountApiKey.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/EnableMarginForSubAccount.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/GetSubAccountApiKey.txt","Binance.Net.UnitTests/Endpoints/General/Brokerage/GetSubAccounts.txt","Binance.Net.UnitTests/Endpoints/General/CopyTrading/GetLeadSymbol.txt","Binance.Net.UnitTests/Endpoints/General/CopyTrading/GetUserStatus.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/AdjustLTV.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/Borrow.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/CustomizeMarginCall.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetBorrowHistory.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetCollateralAssets.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetCollateralRepayRate.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetIncomeHistory.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetLoanableAssets.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetLtvAdjustHistory.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetOpenBorrowOrders.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/GetRepayHistory.txt","Binance.Net.UnitTests/Endpoints/General/CryptoLoans/Repay.txt","Binance.Net.UnitTests/Endpoints/General/Futures/GetFuturesTransferHistory.txt","Binance.Net.UnitTests/Endpoints/General/Futures/TransferFuturesAccount.txt","Binance.Net.UnitTests/Endpoints/General/GiftCard/CreateDualTokenGiftCard.txt","Binance.Net.UnitTests/Endpoints/General/GiftCard/CreateSingleTokenGiftCard.txt","Binance.Net.UnitTests/Endpoints/General/GiftCard/GetRsaPublicKey.txt","Binance.Net.UnitTests/Endpoints/General/GiftCard/GetTokenLimit.txt","Binance.Net.UnitTests/Endpoints/General/GiftCard/RedeemGiftCard.txt","Binance.Net.UnitTests/Endpoints/General/GiftCard/VerifyGiftCardByNumber.txt","Binance.Net.UnitTests/Endpoints/General/Mining/CancelHashrateResaleRequest.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetHashrateResaleDetails.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetHashrateResaleList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMinerDetails.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMinerList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningAccountEarnings.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningAccountList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningAlgorithmList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningCoinList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningOtherRevenueList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningRevenueList.txt","Binance.Net.UnitTests/Endpoints/General/Mining/GetMiningStatistics.txt","Binance.Net.UnitTests/Endpoints/General/Mining/PlaceHashrateResaleRequest.txt","Binance.Net.UnitTests/Endpoints/General/Nft/GetNftAsset.txt","Binance.Net.UnitTests/Endpoints/General/Nft/GetNftDepositHistory.txt","Binance.Net.UnitTests/Endpoints/General/Nft/GetNftTransactionHistory.txt","Binance.Net.UnitTests/Endpoints/General/Nft/GetNftWithdrawHistory.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetAccount.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetCollateralRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexiblePersonalQuotaLeft.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexibleProductPositions.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexibleProducts.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexibleRedemptionRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexibleRewardRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexibleSubscriptionPreview.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetFlexibleSubscriptionRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedPersonalQuotaLeft.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedProductPositions.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedProducts.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedRedemptionRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedRewardRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedSubscriptionPreview.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetLockedSubscriptionRecords.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/GetRateHistory.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/RedeemFlexibleProduct.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/RedeemLockedProduct.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/SetFlexibleAutoSubscribe.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/SetLockedAutoSubscribe.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/SetLockedRedeemOption.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/SubscribeFlexibleProduct.txt","Binance.Net.UnitTests/Endpoints/General/SimpleEarn/SubscribeLockedProduct.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/ConvertBusd.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/CrossMarginAdjustMaxLeverage.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/CrossMarginSmallLiabilityExchange.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/DisableIsolatedMarginAccount.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/DustTransfer.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/EnableIsolatedMarginAccount.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAPIKeyPermissions.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAccountInfo.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAccountStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAccountVipLevelAndStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAssetDividendRecords.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAssetsForDustTransfer.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetAutoConvertStableCoinConfig.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetBalances.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetBnbBurnStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetBusdConvertHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetCloudMiningHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetCommissionRates.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetCrossMarginSmallLiabilityExchangeAssets.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetCrossMarginSmallLiabilityExchangeHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDailyFutureAccountSnapshot.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDailyMarginAccountSnapshot.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDailySpotAccountSnapshot.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDepositAddress.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDepositAddressesList.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDepositHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetDustLog.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetEnabledIsolatedMarginAccountLimit.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetFiatDepositWithdrawHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetFiatPaymentHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetFundingWallet.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetInterestMarginData.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetIsolatedMarginAccount.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetIsolatedMarginFeeData.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetLeveragedTokensUserLimit.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginAccountInfo.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginCapitalFlowData.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginForcedLiquidationHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginInterestHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginInterestRateHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginLevelInformation.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginLoans.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginMaxBorrowAmount.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginMaxTransferAmount.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginOrderRateLimitStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginRepays.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetMarginTransferHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetOrderRateLimitStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetPortfolioMarginAccountInfo.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetPortfolioMarginBankruptcyLoan.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetPortfolioMarginCollateralRate.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetRebateHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetTradeFee.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetTradingStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetTransfers.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetTravelRuleWithdrawalHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetUserAssets.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetWalletBalances.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetWithdrawalAddresses.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/GetWithdrawalHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/MarginBorrow.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/MarginRepay.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/PortfolioMarginBankruptcyLoanRepay.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/SetAutoConvertStableCoinConfig.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/SetBnbBurnStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/Transfer.txt","Binance.Net.UnitTests/Endpoints/Spot/Account/Withdraw.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetAggregatedTradeHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetAssetDetails.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetAvgPrice.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetBookPrice.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetConvertListAllPairs.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetConvertQuantityPrecisionPerAsset.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetCrossMarginCollateralRatio.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetDelistSchedule.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetExchangeInfo.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetExecutionRules.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetFutureHourlyInterestRate.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetIsolatedMarginSymbols.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetIsolatedMarginTierData.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetKlines.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetLeveragedTokenInfo.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetMarginAssets.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetMarginDelistSchedule.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetMarginPriceIndex.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetMarginRestrictedAssets.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetMarginSymbols.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetPrice.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetRecentTrades.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetReferencePrice.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetReferencePriceCalculation.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetRollingWindowTicker.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetServerTime.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetSystemStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetTicker.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetTradeHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetTradingDayTicker.txt","Binance.Net.UnitTests/Endpoints/Spot/ExchangeData/GetUiKlines.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/AmendOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelAlgoOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelAllMarginOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelAllOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelMarginOcoOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelMarginOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelOcoOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/CancelOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/ConvertAcceptQuote.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/ConvertQuoteRequest.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetAlgoSubOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetC2CTradeHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetClosedAlgoOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetConvertOrderStatus.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetConvertTradeHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetLeveragedTokensRedemptionRecords.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetLeveragedTokensSubscriptionRecords.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetMarginOcoOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetMarginOcoOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetMarginOpenOcoOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetMarginOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetMarginOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetMarginUserTrades.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOcoOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOcoOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOpenAlgoOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOpenMarginOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOpenOcoOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOpenOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetOrders.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetPayTradeHistory.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetPayTradeHistory2.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetPreventedTrades.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/GetUserTrades.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceMarginOCOOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceMarginOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceOcoOrderList.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceOtoOrderList.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceOtocoOrderList.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceTestOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/PlaceTimeWeightedAveragePriceOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/RedeemLeveragedToken.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/ReplaceOrder.txt","Binance.Net.UnitTests/Endpoints/Spot/Trading/SubscribeLeveragedToken.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/ChangeInitialLeverage.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/ChangeMarginType.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetAccountConfiguration.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetAccountInfo.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetAccountInfoV3.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetBalances.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetBnbBurnStatus.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetBrackets.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetDownloadIdForOrderHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetDownloadIdForTradeHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetDownloadIdForTransactionHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetDownloadLinkForOrderHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetDownloadLinkForTradeHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetDownloadLinkForTransactionHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetIncomeHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetMarginChangeHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetMultiAssetsMode.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetOrderRateLimit.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetPositionAdlQuantileEstimation.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetPositionInformation.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetSymbolConfiguration.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetTradingStatus.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/GetUserCommissionRate.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/KeepAliveUserStream.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/ModifyPositionMargin.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/ModifyPositionMode.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/SetBnbBurnStatus.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/SetMultiAssetsMode.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/StartUserStream.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Account/StopUserStream.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetAggregatedTradeHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetAssetIndexes.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetBasis.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetBookPrice.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetCompositeIndexInfo.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetContinuousContractKlines.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetExchangeInfo.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetFundingInfo.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetFundingRates.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetGlobalLongShortAccountRatio.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetIndexPriceConstituents.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetIndexPriceKlines.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetInsuranceFundBalances.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetKlines.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetMarkPrice.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetMarkPriceKlines.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetOpenInterest.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetOpenInterestHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetOrderBook.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetPremiumIndexKlines.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetPrice.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetRecentTrades.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetServerTime.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetTakerBuySellVolumeRatio.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetTicker.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetTopLongShortAccountRatio.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetTopLongShortPositionRatio.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/ExchangeData/GetTradeHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelAlgoOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelAllConditionalOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelAllOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelAllOrdersAfterTimeout.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelConditionalOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelMultipleOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/CancelOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/ConvertAcceptQuote.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/ConvertQuoteRequest.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/EditMultipleOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/EditOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetAlgoSubOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetClosedAlgoOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetConditionalOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetConditionalOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetConvertOrderStatus.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetForcedOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOpenAlgoOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOpenConditionalOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOpenOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOpenOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOrderEditHistory.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetPositions.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/GetUserTrades.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/PlaceConditionalOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/PlaceMultipleOrders.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/PlaceOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/PlaceTimeWeightedAveragePriceOrder.txt","Binance.Net.UnitTests/Endpoints/UsdFutures/Trading/PlaceVolumeParticipationOrder.txt","Binance.Net.UnitTests/Properties/AssemblyInfo.cs"],"storefront":"/r/JKorf","claimed":false,"request_supported":{"post":"https://gitbuyer.com/r/JKorf/Binance.Net/request-supported","requests":0},"note":"indexed from public GitHub; nothing is for sale on this page. Clone it from GitHub. Paid listings live at /search."}