Skip to content

Commit

Permalink
Version 4.4.1011
Browse files Browse the repository at this point in the history
  • Loading branch information
burakoner committed Oct 10, 2024
1 parent 0eddc3f commit 1c6c3ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log & Release Notes

* Version 5.4.1011 - 10 Oct 2024
* ApiSharp 3.0.2 Update
*
* * Version 5.4.1010 - 09 Oct 2024
* Updated WebSocket API endpoints and models to [2024-10-04](https://www.okx.com/docs-v5/log_en/#2024-10-04) version
* Moved Status methods to Public Client
Expand Down
10 changes: 0 additions & 10 deletions OKX.Api/Authentication/OkxAuthenticationProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@ public override void AuthenticateRestApi(RestApiClient apiClient, Uri uri, HttpM
headers.Add("x-simulated-trading", "1");
}

public override void AuthenticateTcpSocketApi()
{
throw new NotImplementedException();
}

public override void AuthenticateWebSocketApi()
{
throw new NotImplementedException();
}

public static string Base64Encode(byte[] plainBytes) => Convert.ToBase64String(plainBytes);
public static string Base64Encode(string plainText) => Convert.ToBase64String(Encoding.UTF8.GetBytes(plainText));
public static string Base64Decode(string base64EncodedData) => Encoding.UTF8.GetString(Convert.FromBase64String(base64EncodedData));
Expand Down
10 changes: 5 additions & 5 deletions OKX.Api/OKX.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<PropertyGroup>
<PackageId>OKX.Api</PackageId>
<Authors>Burak Öner</Authors>
<Version>5.4.1010</Version>
<FileVersion>5.4.1010</FileVersion>
<PackageVersion>5.4.1010</PackageVersion>
<AssemblyVersion>5.4.1010</AssemblyVersion>
<Version>5.4.1011</Version>
<FileVersion>5.4.1011</FileVersion>
<PackageVersion>5.4.1011</PackageVersion>
<AssemblyVersion>5.4.1011</AssemblyVersion>
<Description>OKX V5 Api Wrapper. Up-to-date, most-complete, well-organized, well-documented, easy-to-use, multi-task and multi-thread compatible OKX Cryptocurrency Exchange Rest and Websocket Api Wrapper</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>OKX;OKEX;Binance;BNB;BTC;Api;Client;Rest;Web;Websocket;Socket;Wrapper;Crypto;Currency;Cryptocurrency;Exchange;Trade;Trading;Bitcoin;Spot;Margin;Futures;Derivates;Stock;Options;Swap;</PackageTags>
Expand Down Expand Up @@ -63,7 +63,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ApiSharp" Version="3.0.0" />
<PackageReference Include="ApiSharp" Version="3.0.2" />
</ItemGroup>

</Project>

0 comments on commit 1c6c3ed

Please sign in to comment.