mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-20 04:42:57 +00:00
Updated example, removed global.json
This commit is contained in:
@@ -1,21 +1,29 @@
|
||||
using Binance.Net;
|
||||
using Binance.Net.Clients;
|
||||
using Binance.Net.Interfaces.Clients;
|
||||
using Binance.Net.Objects;
|
||||
using Bitfinex.Net;
|
||||
using Bitfinex.Net.Clients;
|
||||
using Bitfinex.Net.Interfaces.Clients;
|
||||
using Bittrex.Net;
|
||||
using Bittrex.Net.Clients;
|
||||
using Bittrex.Net.Interfaces.Clients;
|
||||
using Bybit.Net;
|
||||
using Bybit.Net.Clients;
|
||||
using Bybit.Net.Interfaces.Clients;
|
||||
using CoinEx.Net.Clients;
|
||||
using CoinEx.Net.Interfaces.Clients;
|
||||
using CryptoExchange.Net.Authentication;
|
||||
using FTX.Net;
|
||||
using FTX.Net.Clients;
|
||||
using FTX.Net.Interfaces.Clients;
|
||||
using Huobi.Net;
|
||||
using Huobi.Net.Clients;
|
||||
using Huobi.Net.Interfaces.Clients;
|
||||
using Kraken.Net;
|
||||
using Kraken.Net.Clients;
|
||||
using Kraken.Net.Interfaces.Clients;
|
||||
using Kucoin.Net;
|
||||
using Kucoin.Net.Clients;
|
||||
using Kucoin.Net.Interfaces.Clients;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
@@ -23,6 +31,7 @@ using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace BlazorClient
|
||||
{
|
||||
@@ -42,33 +51,25 @@ namespace BlazorClient
|
||||
services.AddRazorPages();
|
||||
services.AddServerSideBlazor();
|
||||
|
||||
// Register the rest clients as transient, will create a new one when needed
|
||||
services.AddTransient<IBinanceClient, BinanceClient>();
|
||||
services.AddTransient<IBitfinexClient, BitfinexClient>();
|
||||
services.AddTransient<IBittrexClient, BittrexClient>();
|
||||
services.AddTransient<IBybitClient, BybitClient>();
|
||||
services.AddTransient<ICoinExClient, CoinExClient>();
|
||||
services.AddTransient<IFTXClient, FTXClient>();
|
||||
services.AddTransient<IHuobiClient, HuobiClient>();
|
||||
services.AddTransient<IKrakenClient, KrakenClient>();
|
||||
services.AddTransient<IKucoinClient, KucoinClient>();
|
||||
// Register the clients, options can be provided in the callback parameter
|
||||
services.AddBinance((restClientOptions, socketClientOptions) => {
|
||||
restClientOptions.ApiCredentials = new ApiCredentials("KEY", "SECRET");
|
||||
restClientOptions.LogLevel = LogLevel.Debug;
|
||||
|
||||
// Register the socket clients as scoped so the same instance will be reused per client
|
||||
services.AddScoped<IBinanceSocketClient, BinanceSocketClient>();
|
||||
services.AddScoped<IBitfinexSocketClient, BitfinexSocketClient>();
|
||||
services.AddScoped<IBittrexSocketClient, BittrexSocketClient>();
|
||||
services.AddScoped<IBybitSocketClient, BybitSocketClient>();
|
||||
services.AddScoped<ICoinExSocketClient, CoinExSocketClient>();
|
||||
services.AddScoped<IFTXSocketClient, FTXSocketClient>();
|
||||
services.AddScoped<IHuobiSocketClient, HuobiSocketClient>();
|
||||
services.AddScoped<IKrakenSocketClient, KrakenSocketClient>();
|
||||
services.AddScoped<IKucoinSocketClient, KucoinSocketClient>();
|
||||
|
||||
// Can set default client options here, for instance:
|
||||
BinanceClient.SetDefaultOptions(new BinanceClientOptions
|
||||
{
|
||||
ApiCredentials = new ApiCredentials("KEY", "SECRET")
|
||||
socketClientOptions.ApiCredentials = new ApiCredentials("KEY", "SECRET");
|
||||
});
|
||||
services.AddBitfinex();
|
||||
services.AddBittrex();
|
||||
services.AddBybit();
|
||||
//services.AddCoinEx();
|
||||
services.AddFTX();
|
||||
services.AddHuobi();
|
||||
services.AddKraken();
|
||||
services.AddKucoin();
|
||||
|
||||
// TODO remove when AddCoinEx fixed
|
||||
services.AddScoped<ICoinExClient, CoinExClient>();
|
||||
services.AddScoped<ICoinExSocketClient, CoinExSocketClient>();
|
||||
}
|
||||
|
||||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||||
|
||||
Reference in New Issue
Block a user