Skip to content

Commit ab028ea

Browse files
Update Bitfinex
1 parent bd62b12 commit ab028ea

File tree

89 files changed

+181
-168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+181
-168
lines changed

Integrations/Bitfinex/Bitfinex.API/Abstractions/IBitfinexPrivateRestApiV2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Threading;
44
using System.Threading.Tasks;

Integrations/Bitfinex/Bitfinex.API/Abstractions/IBitfinexPrivateWebSocketApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Threading;
44

Integrations/Bitfinex/Bitfinex.API/Abstractions/IBitfinexPublicRestApiV2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.Models;
44
using Bitfinex.API.Models.Requests;

Integrations/Bitfinex/Bitfinex.API/Abstractions/IBitfinexPublicWebSocketApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Threading;
44

Integrations/Bitfinex/Bitfinex.API/Abstractions/IBitfinexRestApiV1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Threading;
44
using System.Threading.Tasks;

Integrations/Bitfinex/Bitfinex.API/Abstractions/IBitfinexWebSocketApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using System.Threading;

Integrations/Bitfinex/Bitfinex.API/Bitfinex.API.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8</TargetFramework>
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
66
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
@@ -17,8 +17,8 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="Refit" Version="7.0.0" />
21-
<PackageReference Include="Refit.Newtonsoft.Json" Version="7.0.0" />
20+
<PackageReference Include="Refit" Version="7.1.2" />
21+
<PackageReference Include="Refit.Newtonsoft.Json" Version="7.1.2" />
2222
<PackageReference Include="WebSocket4Net" Version="0.15.2" />
2323
</ItemGroup>
2424

Integrations/Bitfinex/Bitfinex.API/BitfinexApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using System.Collections.Generic;

Integrations/Bitfinex/Bitfinex.API/BitfinexPrivateWebSocketApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Collections.Generic;
44
using System.Threading;

Integrations/Bitfinex/Bitfinex.API/BitfinexPublicWebSocketApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.Abstractions;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/BitfinexWebSocketApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.Abstractions;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexAccountSummaryJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.Models;
44
using Newtonsoft.Json;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexCandleJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.Models;
44
using Newtonsoft.Json;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexDerivativeStatusJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.Models;
44
using Newtonsoft.Json;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexErrorJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexMarginInfoJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexNotificationJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexOrderJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexOrderResponseJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using System.Linq;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexPositionJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexTickerJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexTradeJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexUserInfoJsonConverter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;
@@ -13,14 +13,14 @@ public override BitfinexUserInfo ReadJson(JsonReader reader, Type objectType, Bi
1313
{
1414
var jArray = serializer.Deserialize<JArray>(reader);
1515

16-
var result = new BitfinexUserInfo()
16+
var result = new BitfinexUserInfo
1717
{
1818
Id = jArray[0].Value<int>(),
1919
Email = jArray[1].Value<string>(),
2020
Username = jArray[2].Value<string>(),
2121
CreationTime = DateTimeOffset.FromUnixTimeMilliseconds(jArray[3].Value<long>()).UtcDateTime,
2222
IsVerified = jArray[4].Value<int>() == 1,
23-
VerificationLevel = jArray[5].Value<int>(),
23+
VerificationLevel = jArray[5].Value<int?>() ?? 0,
2424
Timezone = jArray[7].Value<string>(),
2525
Locale = jArray[8].Value<string>(),
2626
Company = jArray[9].Value<string>(),

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexUserTradeJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/JsonConverters/BitfinexWalletJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using Bitfinex.API.Models;

Integrations/Bitfinex/Bitfinex.API/Misc/BitfinexAuthHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using System.Net.Http;

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexAccountSummary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexAuthMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Runtime.Serialization;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexBookItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexCandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexChannel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexDerivativeStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexError.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using Bitfinex.API.JsonConverters;
44
using Newtonsoft.Json;

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexErrorCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexErrorEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44
using System.Collections.Generic;

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexMarginInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexMarginKey.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Runtime.Serialization;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexMeta.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Runtime.Serialization;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexNotification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexNotificationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexOrder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexOrderFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexOrderResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexOrderStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexOrderType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexPosition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexPositionStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexSymbolDetails.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Runtime.Serialization;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexTicker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexTimeframe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexTrade.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexUserInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexUserTrade.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexWallet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/BitfinexWalletType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
namespace Bitfinex.API.Models;
44

Integrations/Bitfinex/Bitfinex.API/Models/Requests/BitfinexAvailableBalanceRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Runtime.Serialization;
44

Integrations/Bitfinex/Bitfinex.API/Models/Requests/BitfinexCancelOrderRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright QUANTOWER LLC. © 2017-2023. All rights reserved.
1+
// Copyright QUANTOWER LLC. © 2017-2024. All rights reserved.
22

33
using System.Runtime.Serialization;
44

0 commit comments

Comments
 (0)