Skip to content

Commit

Permalink
Feature/v2 api (#69)
Browse files Browse the repository at this point in the history
V2 spot and futures API
  • Loading branch information
JKorf authored Apr 6, 2024
1 parent 67198ea commit fdc6ad6
Show file tree
Hide file tree
Showing 159 changed files with 13,522 additions and 1,582 deletions.
6 changes: 3 additions & 3 deletions CoinEx.Net.UnitTests/CoinExClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.Sockets;
using CoinEx.Net.Clients;
using CoinEx.Net.Clients.SpotApi;
using CoinEx.Net.ExtensionMethods;
using CryptoExchange.Net.Objects.Sockets;
using NUnit.Framework.Legacy;
using CoinEx.Net.Clients.SpotApiV1;

namespace CoinEx.Net.UnitTests
{
Expand Down Expand Up @@ -95,8 +95,8 @@ public void SigningString_Should_GiveCorrectSignResult(string input, string outp
public void CheckRestInterfaces()
{
var assembly = Assembly.GetAssembly(typeof(CoinExRestClientSpotApi));
var ignore = new string[] { "ICoinExClientSpot" };
var clientInterfaces = assembly.GetTypes().Where(t => t.Name.StartsWith("ICoinExClient") && !ignore.Contains(t.Name));
var ignore = new string[] { "ICoinExRestClientSpot" };
var clientInterfaces = assembly.GetTypes().Where(t => t.Name.StartsWith("ICoinExRestClient") && !ignore.Contains(t.Name));

foreach (var clientInterface in clientInterfaces)
{
Expand Down
Loading

0 comments on commit fdc6ad6

Please sign in to comment.