Skip to content

Commit

Permalink
Updated CryptoExchange.Net version, added Type property to KucoinExch…
Browse files Browse the repository at this point in the history
…ange class
  • Loading branch information
JKorf committed Jan 7, 2025
1 parent 1293193 commit e1499b0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Kucoin.Net/Kucoin.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="CryptoExchange.Net" Version="8.5.0" />
<PackageReference Include="CryptoExchange.Net" Version="8.6.0" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
5 changes: 5 additions & 0 deletions Kucoin.Net/Kucoin.Net.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5449,6 +5449,11 @@
Urls to the API documentation
</summary>
</member>
<member name="P:Kucoin.Net.KucoinExchange.Type">
<summary>
Type of exchange
</summary>
</member>
<member name="M:Kucoin.Net.KucoinExchange.FormatSymbol(System.String,System.String,CryptoExchange.Net.SharedApis.TradingMode,System.Nullable{System.DateTime})">
<summary>
Format a base and quote asset to a Kucoin recognized symbol
Expand Down
5 changes: 5 additions & 0 deletions Kucoin.Net/KucoinExchange.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ public static class KucoinExchange
"https://www.kucoin.com/docs/beginners/introduction"
};

/// <summary>
/// Type of exchange
/// </summary>
public static ExchangeType Type { get; } = ExchangeType.CEX;

/// <summary>
/// Format a base and quote asset to a Kucoin recognized symbol
/// </summary>
Expand Down

0 comments on commit e1499b0

Please sign in to comment.