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

Added DeepCoin reference and examples

This commit is contained in:
Jkorf
2025-03-04 11:41:03 +01:00
parent 1f9e2b4fcb
commit d412e0895e
10 changed files with 47 additions and 21 deletions
@@ -1,5 +1,6 @@
@page "/SpotClient"
@using CryptoExchange.Net.SharedApis
@using System.Diagnostics
@inject IEnumerable<ISpotTickerRestClient> restClients
<h3>ETH-BTC prices:</h3>
@@ -20,6 +21,8 @@
{
if (ticker.Success)
_prices.Add(ticker.Exchange, ticker.Data.LastPrice);
else
Debug.WriteLine($"{ticker.Exchange} failed: {ticker.Error}");
}
}