Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Sep 26, 2024
1 parent 4cfb1f6 commit f86ae91
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
using CryptoExchange.Net.Converters.SystemTextJson;
using CoinEx.Net.Objects.Models.V2;
using CoinEx.Net.Interfaces.Clients.FuturesApi;
using CryptoExchange.Net.SharedApis;

namespace CoinEx.Net.Clients.FuturesApi
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using CoinEx.Net.Objects.Sockets.V2.Queries;
using System.Linq;
using CoinEx.Net.Interfaces.Clients.FuturesApi;
using CryptoExchange.Net.SharedApis;

namespace CoinEx.Net.Clients.FuturesApi
{
Expand Down
1 change: 1 addition & 0 deletions CoinEx.Net/Clients/SpotApiV1/CoinExRestClientSpotApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using CryptoExchange.Net.Converters.MessageParsing;
using CryptoExchange.Net.Clients;
using CoinEx.Net.Interfaces.Clients.SpotApiV1;
using CryptoExchange.Net.SharedApis;

namespace CoinEx.Net.Clients.SpotApiV1
{
Expand Down
1 change: 1 addition & 0 deletions CoinEx.Net/Clients/SpotApiV1/CoinExSocketClientSpotApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
using CryptoExchange.Net.Converters.MessageParsing;
using CryptoExchange.Net.Clients;
using CoinEx.Net.Interfaces.Clients.SpotApiV1;
using CryptoExchange.Net.SharedApis;

namespace CoinEx.Net.Clients.SpotApiV1
{
Expand Down
1 change: 1 addition & 0 deletions CoinEx.Net/Clients/SpotApiV2/CoinExRestClientSpotApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
using CoinEx.Net.Enums;
using System.Linq;
using System.Globalization;
using CryptoExchange.Net.SharedApis;

namespace CoinEx.Net.Clients.SpotApiV2
{
Expand Down
2 changes: 2 additions & 0 deletions CoinEx.Net/Clients/SpotApiV2/CoinExSocketClientSpotApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using CoinEx.Net.Objects.Sockets.V2.Queries;
using System.Linq;
using CoinEx.Net.Interfaces.Clients.SpotApiV2;
using CryptoExchange.Net.SharedApis;

namespace CoinEx.Net.Clients.SpotApiV2
{
Expand Down Expand Up @@ -54,6 +55,7 @@ protected override AuthenticationProvider CreateAuthenticationProvider(ApiCreden

/// <inheritdoc />
public override string FormatSymbol(string baseAsset, string quoteAsset, TradingMode tradingMode, DateTime? deliverTime = null) => $"{baseAsset.ToUpperInvariant()}{quoteAsset.ToUpperInvariant()}";

#region methods

/// <inheritdoc />
Expand Down
12 changes: 6 additions & 6 deletions CoinEx.Net/CoinEx.Net.xml

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

0 comments on commit f86ae91

Please sign in to comment.