diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index cbe35f5..9db0dbe 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -17,6 +17,8 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x + - name: Set GitHub package source + run: dotnet nuget add source --username JKorf --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/JKorf/index.json" - name: Restore dependencies run: dotnet restore - name: Build diff --git a/Bitfinex.Net/Bitfinex.Net.csproj b/Bitfinex.Net/Bitfinex.Net.csproj index 6c064cb..c231532 100644 --- a/Bitfinex.Net/Bitfinex.Net.csproj +++ b/Bitfinex.Net/Bitfinex.Net.csproj @@ -10,7 +10,7 @@ 7.5.0 7.5.0 7.5.0 - Bitfinex.Net is a client library for accessing the Bitfinex REST and Websocket API. All data is mapped to readable models and enum values. Additional features include an implementation for maintaining a client side order book, easy integration with other exchange client libraries and more. + Bitfinex.Net is a client library for accessing the Bitfinex REST and Websocket API. All data is mapped to readable models and enum values. Additional features include automatic websocket (re)connection management, an implementation for maintaining a client side order book, easy integration with other exchange client libraries and more. false Bitfinex;Bitfinex.Net;Bitfinex Client;Bitfinex API;CryptoCurrency;CryptoCurrency Exchange git diff --git a/README.md b/README.md index ced6da9..ffb7132 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,16 @@ [![.NET](https://img.shields.io/github/actions/workflow/status/JKorf/Bitfinex.Net/dotnet.yml?style=for-the-badge)](https://github.com/JKorf/Bitfinex.Net/actions/workflows/dotnet.yml) ![License](https://img.shields.io/github/license/JKorf/Bitfinex.Net?style=for-the-badge) -Bitfinex.Net is a strongly typed client library for accessing the [Bitfinex REST and Websocket API](https://docs.bitfinex.com/docs). All data is mapped to readable models and enum values. Additional features include an implementation for maintaining a client side order book, easy integration with other exchange client libraries and more. +Bitfinex.Net is a strongly typed client library for accessing the [Bitfinex REST and Websocket API](https://docs.bitfinex.com/docs). + +## Features +* Response data is mapped to descriptive models +* Input parameters and response values are mapped to discriptive enum values where possible +* Automatic websocket (re)connection management +* Cient side order book implementation +* Extensive logging +* Support for different environments +* Easy integration with other exchange client based on the CryptoExchange.Net base library ## Supported Frameworks The library is targeting both `.NET Standard 2.0` and `.NET Standard 2.1` for optimal compatibility diff --git a/docs/index.html b/docs/index.html index 03165dc..5c6f0c0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -97,7 +97,17 @@

Bitfinex.Net

-

Bitfinex.Net is a strongly typed client library for accessing the Bitfinex REST and Websocket API. All data is mapped to readable models and enum values. Additional features include an implementation for maintaining a client side order book, easy integration with other exchange client libraries and more.

+

Bitfinex.Net is a strongly typed client library for accessing the Bitfinex REST and Websocket API.

+

Features

+
This library is based on the CryptoExchange.Net base package and can be used in combination with other exchange packages!

Supported Frameworks