From 0d0a008365c64ecf5bff2d3c61b83ed23872a48f Mon Sep 17 00:00:00 2001 From: JKorf Date: Fri, 26 Apr 2024 15:40:38 +0200 Subject: [PATCH] wip --- Huobi.Net/Huobi.Net.xml | 20 ++++++++++++++++++++ Huobi.Net/HuobiExchange.cs | 25 +++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 Huobi.Net/HuobiExchange.cs diff --git a/Huobi.Net/Huobi.Net.xml b/Huobi.Net/Huobi.Net.xml index 7b0e1f10..c291bca3 100644 --- a/Huobi.Net/Huobi.Net.xml +++ b/Huobi.Net/Huobi.Net.xml @@ -2278,6 +2278,26 @@ + + + Huobi exchange information and configuration + + + + + Exchange name + + + + + Url to the main website + + + + + Urls to the API documentation + + Client for accessing the Huobi API. diff --git a/Huobi.Net/HuobiExchange.cs b/Huobi.Net/HuobiExchange.cs new file mode 100644 index 00000000..64ee5297 --- /dev/null +++ b/Huobi.Net/HuobiExchange.cs @@ -0,0 +1,25 @@ +namespace Huobi.Net +{ + /// + /// Huobi exchange information and configuration + /// + public static class HuobiExchange + { + /// + /// Exchange name + /// + public static string ExchangeName => "Huobi"; + + /// + /// Url to the main website + /// + public static string Url { get; } = "https://www.huobi.com"; + + /// + /// Urls to the API documentation + /// + public static string[] ApiDocsUrl { get; } = new[] { + "https://huobiapi.github.io/docs/spot/v1/en/#change-log" + }; + } +}