Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Apr 26, 2024
1 parent 6bd8ddb commit 0d0a008
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Huobi.Net/Huobi.Net.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions Huobi.Net/HuobiExchange.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
namespace Huobi.Net
{
/// <summary>
/// Huobi exchange information and configuration
/// </summary>
public static class HuobiExchange
{
/// <summary>
/// Exchange name
/// </summary>
public static string ExchangeName => "Huobi";

/// <summary>
/// Url to the main website
/// </summary>
public static string Url { get; } = "https://www.huobi.com";

/// <summary>
/// Urls to the API documentation
/// </summary>
public static string[] ApiDocsUrl { get; } = new[] {
"https://huobiapi.github.io/docs/spot/v1/en/#change-log"
};
}
}

0 comments on commit 0d0a008

Please sign in to comment.