1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-11 16:32:57 +00:00

Updated examples

This commit is contained in:
Jkorf
2026-03-24 17:25:58 +01:00
parent d715c7df59
commit 54b15b75d3
5 changed files with 46 additions and 44 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
using Binance.Net;
using CryptoExchange.Net.Authentication;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
@@ -30,7 +31,7 @@ namespace BlazorClient
// Register the clients, options can be provided in the callback parameter
services.AddBinance(restOptions =>
{
restOptions.ApiCredentials = new ApiCredentials("KEY", "SECRET");
restOptions.ApiCredentials = new BinanceCredentials("KEY", "SECRET");
});
services.AddAster();