diff --git a/OKX.Net/OKX.Net.csproj b/OKX.Net/OKX.Net.csproj index 690068c..cc350e0 100644 --- a/OKX.Net/OKX.Net.csproj +++ b/OKX.Net/OKX.Net.csproj @@ -1,4 +1,4 @@ - + netstandard2.0;netstandard2.1 latest @@ -49,7 +49,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/OKX.Net/OKX.Net.xml b/OKX.Net/OKX.Net.xml index 61415b4..6fd6bf2 100644 --- a/OKX.Net/OKX.Net.xml +++ b/OKX.Net/OKX.Net.xml @@ -9657,6 +9657,11 @@ Urls to the API documentation + + + Type of exchange + + Format a base and quote asset to an OKX recognized symbol diff --git a/OKX.Net/OKXExchange.cs b/OKX.Net/OKXExchange.cs index 474152e..382aa67 100644 --- a/OKX.Net/OKXExchange.cs +++ b/OKX.Net/OKXExchange.cs @@ -36,6 +36,11 @@ public static class OKXExchange "https://www.okx.com/docs-v5/en/" }; + /// + /// Type of exchange + /// + public static ExchangeType Type { get; } = ExchangeType.CEX; + internal const string ClientOrderId = "1425d83a94fbBCDE"; internal const string ClientOrderIdPrefix = ClientOrderId + LibraryHelpers.ClientOrderIdSeperator;