A .Net wrapper for the Chiliz API as described on Chiliz, including all features the API provides using clear and readable objects.
If you think something is broken, something is missing or have any questions, please open an Issue
Implementation is build upon the CryptoExchange.Net library, make sure to also check out the documentation on that: docs
My CryptoExchange.Net implementations:
OKEx |
Chiliz |
BitMax |
BtcTurk |
Paribu |
Thodex |
Coinzo |
Tatum |
JKorf CryptoExchange.Net implementations:
Binance |
Bitfinex |
Bittrex |
CoinEx |
Huobi |
Kraken |
Kucoin |
Implementations from third parties:
Bitmex |
Exante |
HitBTC |
Liquid |
LiveCoin |
Switcheo |
Donations are greatly appreciated and a motivation to keep improving.
BTC: 33WbRKqt7wXARVdAJSu1G1x3QnbyPtZ2bH
ETH: 0x65b02db9b67b73f5f1e983ae10796f91ded57b64
Available on Nuget.
PM> Install-Package Chiliz.Net
To get started with Chiliz.Net first you will need to get the library itself. The easiest way to do this is to install the package into your project using NuGet. Using Visual Studio this can be done in two ways.
In Visual Studio right click on your solution and select 'Manage NuGet Packages for solution...'. A screen will appear which initially shows the currently installed packages. In the top bit select 'Browse'. This will let you download net package from the NuGet server. In the search box type 'Chiliz.Net' and hit enter. The Chiliz.Net package should come up in the results. After selecting the package you can then on the right hand side select in which projects in your solution the package should install. After you've selected all project you wish to install and use Chiliz.Net in hit 'Install' and the package will be downloaded and added to you projects.
In Visual Studio in the top menu select 'Tools' -> 'NuGet Package Manager' -> 'Package Manager Console'. This should open up a command line interface. On top of the interface there is a dropdown menu where you can select the Default Project. This is the project that Chiliz.Net will be installed in. After selecting the correct project type Install-Package Chiliz.Net
in the command line interface. This should install the latest version of the package in your project.
After doing either of above steps you should now be ready to actually start using Chiliz.Net.
After installing it's time to actually use it. To get started we have to add the Chiliz.Net namespace: using Chiliz.Net;
.
Chiliz.Net provides two clients to interact with the Chiliz API. The ChilizClient
provides all rest API calls. The ChilizSocketClient
provides functions to interact with the websocket provided by the Chiliz API. Both clients are disposable and as such can be used in a using
statement.
-
Version 2.5.0 - 18 Sep 2021
- Synced with CryptoExchange.Net v4.1.0
-
Version 2.1.0 - 31 Mar 2021
- Updated dependencies
-
Version 2.0.1 - 01 Feb 2021
- Updated CryptoExchange.Net to 3.6.0
-
Version 2.0.0 - 17 Jan 2021
- All methods are virtual now. You can customize methods by overriding.
- Fixed several minor bugs
-
Version 1.2.8 - 12 Jan 2021
- CryptoExchange version updated to 3.5.0
-
Version 1.2.5 - 23 Dec 2020
- CryptoExchange version updated to 3.4.0
-
Version 1.2.4 - 12 Dec 2020
- CryptoExchange version updated to 3.3.0
-
Version 1.2.3 - 08 Nov 2020
- Fixed duplicate slashes on BaseAddress caused by CryptoExchange
-
Version 1.2.1 - 08 Nov 2020
- CryptoExchange Version Updated to 3.1.0
-
Version 1.2.0 - 21 Sep 2020
- CryptoExchange Version Updated to 3.0.14
-
Version 1.0.2 - 01 Feb 2020
- Added DepositHistory
-
Version 1.0.0 - 26 Jan 2020
- First Release