author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
329,148 | 03.08.2018 10:27:14 | 21,600 | 461479f0f8450636db67c175bbb1f0a1f760c6d1 | Upgrade to net472 | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -956,8 +956,8 @@ namespace ExchangeSharp\nif (CanMakeAuthenticatedRequest(payload))\n{\n// payload is ignored, exce... | C# | MIT License | jjxtra/exchangesharp | Upgrade to net472 |
329,148 | 03.08.2018 11:36:13 | 21,600 | 0eef8c6c7d1fe8581b692b3c861294eac2a68d4c | Allow websocket4net for web socket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -227,8 +227,11 @@ namespace ExchangeSharp\n/// Close and dispose of all resources, stops the web socket and shuts it down.\n/// </summary>\npublic vo... | C# | MIT License | jjxtra/exchangesharp | Allow websocket4net for web socket |
329,148 | 03.08.2018 14:58:37 | 21,600 | 819a5257c5bc5a2681a4053805a741a2d6cc84cb | Update readme, refactor console files | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_Convert.cs",
"new_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_Convert.cs",
"diff": "@@ -20,7 +20,7 @@ using ExchangeSharp;\nnamespace ExchangeSharpConsole\n{\n- public static partial class Exchang... | C# | MIT License | jjxtra/exchangesharp | Update readme, refactor console files |
329,148 | 03.08.2018 15:48:00 | 21,600 | 221b2f27feb9fc184f279d21b8a3aeb053eae3fc | Use utc dates | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Cryptopia/ExchangeCryptopiaAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Cryptopia/ExchangeCryptopiaAPI.cs",
"diff": "@@ -168,7 +168,7 @@ namespace ExchangeSharp\nprotected override async Task OnGetHistoricalTradesAsync(Func<IEn... | C# | MIT License | jjxtra/exchangesharp | Use utc dates |
329,148 | 04.08.2018 10:34:41 | 21,600 | cc70427803207daed17abfcc435be66e75a6436e | Websocket bug fix | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -342,13 +342,21 @@ namespace ExchangeSharp\nwebSocket.KeepAliveInterval = KeepAlive;\nwasConnected = false;\nawait webSocket.ConnectAsync(Uri, cancel... | C# | MIT License | jjxtra/exchangesharp | Websocket bug fix |
329,148 | 04.08.2018 13:57:33 | 21,600 | 542b02f40e6cfc80dbd42ec131eb2e710d481ff7 | Add Okex private web socket wrapper | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"diff": "@@ -702,6 +702,24 @@ namespace ExchangeSharp\n});\n}\n+ private IWebSocket ConnectPrivateWebSocketOkex(Func<IWebSocket, Task> conn... | C# | MIT License | jjxtra/exchangesharp | Add Okex private web socket wrapper |
329,148 | 04.08.2018 14:22:30 | 21,600 | f709c78a82a2244587e872c01a0b323cfdbc7f6e | Split out historical helper and exchange names class | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -358,7 +358,7 @@ namespace ExchangeSharp\n\"M\": true // Was the trade the best price match?\n} ] */\n- HistoricalT... | C# | MIT License | jjxtra/exchangesharp | Split out historical helper and exchange names class |
329,148 | 04.08.2018 14:32:00 | 21,600 | 1b3278255c241ed9707bd52202379c40acd00a30 | Add name attribute
For classes that have a non-standard name format but still want to apply a Name property, a new ApiNameAttribute is provided. | [
{
"change_type": "MODIFY",
"old_path": "CONTRIBUTING.md",
"new_path": "CONTRIBUTING.md",
"diff": "@@ -13,8 +13,8 @@ Please follow these coding guidelines...\nWhen creating a new Exchange API, please do the following:\n- For reference comparisons, https://github.com/ccxt/ccxt is a good project to com... | C# | MIT License | jjxtra/exchangesharp | Add name attribute
For classes that have a non-standard name format but still want to apply a Name property, a new ApiNameAttribute is provided. |
329,148 | 04.08.2018 14:42:58 | 21,600 | 0fef84b38ee41e23ceadda43098c2c88043ae76a | Add Sync utility method
In possible preparation for removing synchronous method calls, add Sync method to easily make an async method run synchronously. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -1006,5 +1006,24 @@ namespace ExchangeSharp\nreturn (decimal)Math.Pow(10, -1 * precision);\n}\n+\n+ /// <summary>\n+ /// Make a task execute synchronousl... | C# | MIT License | jjxtra/exchangesharp | Add Sync utility method
In possible preparation for removing synchronous method calls, add Sync method to easily make an async method run synchronously. |
329,148 | 04.08.2018 15:19:19 | 21,600 | be1bd9f11f38c3d41247776c0c43759e6ae358b9 | Use new Sync extension method | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/APIRequestMaker.cs",
"new_path": "ExchangeSharp/API/Common/APIRequestMaker.cs",
"diff": "@@ -47,7 +47,7 @@ namespace ExchangeSharp\n/// <returns>Raw response</returns>\npublic string MakeRequest(string url, string baseUrl = null, Dicti... | C# | MIT License | jjxtra/exchangesharp | Use new Sync extension method |
329,148 | 04.08.2018 15:39:59 | 21,600 | 3cf94913b0d21bb345eb886ea3542bcf0a53347f | Allow nonce expire
Bitmex is an exchange that has an api-expires header, this allows a window where the call is no longer valid, specified by the caller. Much easier to use than a nonce, wish all the API did this. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -81,7 +81,19 @@ namespace ExchangeSharp\n/// <summary>\n/// Persist nonce to counter and file for the API key, once it hits long.MaxValue, it is useless\n/// <... | C# | MIT License | jjxtra/exchangesharp | Allow nonce expire
Bitmex is an exchange that has an api-expires header, this allows a window where the call is no longer valid, specified by the caller. Much easier to use than a nonce, wish all the API did this. |
329,148 | 04.08.2018 17:21:41 | 21,600 | 9cfceb2355f6243488b7430cfcfc8f0740a00614 | Allow posting array to API
Allow posting an array instead of dictionary to API. I would expect good API design to always take a dictionary and have an array key with array values allowing other key/value to go along with the request, but Bitmex is one that just takes an array. Face palm. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -535,17 +535,40 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeOrderResult> OnPlaceOrderAsync(Exchan... | C# | MIT License | jjxtra/exchangesharp | Allow posting array to API
Allow posting an array instead of dictionary to API. I would expect good API design to always take a dictionary and have an array key with array values allowing other key/value to go along with the request, but Bitmex is one that just takes an array. Face palm. |
329,148 | 04.08.2018 17:31:53 | 21,600 | b581667b2d23b8629c41826597dbdce6af2ecfd0 | Store member fields in case they are nulled out during async operation | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/SignalrManager.cs",
"new_path": "ExchangeSharp/API/Common/SignalrManager.cs",
"diff": "@@ -65,9 +65,20 @@ namespace ExchangeSharp\n{\nif (callback != null)\n{\n+ SignalrManager _manager = this.manager;\n+ if (_manager == null)\n+ {\n+ ... | C# | MIT License | jjxtra/exchangesharp | Store member fields in case they are nulled out during async operation |
329,092 | 04.08.2018 18:04:35 | 25,200 | bdc8680d8a041c6507bcdd9ea1f239325d7b541b | Fix json deserialization bugs in Binance GetCurrencies API
Refactoring and testability improvements for ExchangeAPI. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/Models/Currency.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/Models/Currency.cs",
"diff": "@@ -32,10 +32,10 @@ namespace ExchangeSharp.Binance\npublic decimal TransactionFee { get; set; }\n[JsonProperty(\"commission... | C# | MIT License | jjxtra/exchangesharp | Fix json deserialization bugs in Binance GetCurrencies API (#229)
Refactoring and testability improvements for ExchangeAPI. |
329,148 | 04.08.2018 21:53:48 | 21,600 | 390f842ffd31dc5f5deb272225e040b7786684cf | Simplify order book helper queueing | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"diff": "@@ -34,7 +34,7 @@ namespace ExchangeSharp\n// * Confirm with the Exchange's API docs whether the data in each event ... | C# | MIT License | jjxtra/exchangesharp | Simplify order book helper queueing |
329,148 | 04.08.2018 22:02:07 | 21,600 | 0a057a832312beac0272eb787b1ceaa9e366e50c | Better queueing | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"diff": "@@ -78,9 +78,19 @@ namespace ExchangeSharp\ncase ExchangeName.Binance:\ncase ExchangeName.Poloniex:\n{\n- // If we d... | C# | MIT License | jjxtra/exchangesharp | Better queueing |
329,148 | 05.08.2018 09:32:01 | 21,600 | dbe782fa67ba8a461f95260af6a9b8a11141deec | Tweak Bitmex params | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -38,11 +38,13 @@ namespace ExchangeSharp\nNonceStyle = NonceStyle.ExpiresUnixSeconds;\n// make the nonce go 10 seconds ... | C# | MIT License | jjxtra/exchangesharp | Tweak Bitmex params |
329,148 | 05.08.2018 11:58:38 | 21,600 | 88f191c3ceeaf9246355ed6e25fe5a70a7139250 | Rename vars to be more clear, improve locking | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"diff": "@@ -34,8 +34,7 @@ namespace ExchangeSharp\n// * Confirm with the Exchange's API docs whether the data in each event ... | C# | MIT License | jjxtra/exchangesharp | Rename vars to be more clear, improve locking |
329,148 | 05.08.2018 18:01:24 | 21,600 | 63b03b43c323c157c24373d252b16ceff8d99d9f | Make getting sub result object smarter
If a sub-result key is found, the sub-key must be object or array to be used. Some exchanges put string objects in result keys. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -194,6 +194,8 @@ namespace ExchangeSharp\nprivate decimal lastNonce;\n+ private readonly string[] resultKeys = new string[] { \"result\", \"data\", \"return\",... | C# | MIT License | jjxtra/exchangesharp | Make getting sub result object smarter
If a sub-result key is found, the sub-key must be object or array to be used. Some exchanges put string objects in result keys. |
329,148 | 05.08.2018 21:02:10 | 21,600 | 9fb83813012f99617e7297a591407b6e55965f87 | More delta order book fixes | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPIExtensions.cs",
"diff": "@@ -82,10 +82,7 @@ namespace ExchangeSharp\ncase ExchangeName.Poloniex:\n{\nQueue<ExchangeOrderBook> partialOrderBoo... | C# | MIT License | jjxtra/exchangesharp | More delta order book fixes |
329,148 | 06.08.2018 08:58:20 | 21,600 | 98f004d45ac27ce396487904f1dc8b0fd7cc2f9e | Remove virtual.
For mocking non-virtual, we can use | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs",
"diff": "@@ -303,6 +303,41 @@ namespace ExchangeSharp\n}\n}\n+ /// <summary>\n+ /// Convert an exchange currency to a global currency. For exampl... | C# | MIT License | jjxtra/exchangesharp | Remove virtual.
For mocking non-virtual, we can use https://github.com/tonerdo/pose |
329,148 | 07.08.2018 10:09:18 | 21,600 | ef836149336f486f8d8569fb343867e4da12ad2c | Make signalr events fully async | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/SignalrManager.cs",
"new_path": "ExchangeSharp/API/Common/SignalrManager.cs",
"diff": "@@ -31,7 +31,7 @@ namespace ExchangeSharp\npublic sealed class SignalrSocketConnection : IWebSocket\n{\nprivate readonly SignalrManager manager;\n- ... | C# | MIT License | jjxtra/exchangesharp | Make signalr events fully async |
329,148 | 07.08.2018 10:41:46 | 21,600 | 21dd7eb95b38535ec1663c8d779033e6f90fe4fd | Coinbase reverse pairs | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"diff": "@@ -45,7 +45,7 @@ namespace ExchangeSharp\ndecimal price = result[\"price\"].ConvertInvariant<decimal>();\ndecimal... | C# | MIT License | jjxtra/exchangesharp | Coinbase reverse pairs |
329,148 | 07.08.2018 13:18:37 | 21,600 | cc307a9fd5d668e8af9d3550dca6b9512c9e99a1 | Split url and for mencoding
Replace upper and lower with invariant versions | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Bittrex/ExchangeBittrexAPI.cs",
"diff": "@@ -473,7 +473,7 @@ namespace ExchangeSharp\norderAmount.ToStringInvariant() + \"&rate=\" + orderPrice.ToStringInvaria... | C# | MIT License | jjxtra/exchangesharp | Split url and for mencoding
Replace upper and lower with invariant versions |
329,148 | 07.08.2018 13:28:57 | 21,600 | 0d42317430a251924beb2b1ea697bfc02478c0b8 | Remove parse call change to invariant convert | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Dependencies/Converters/TimestampConverter.cs",
"new_path": "ExchangeSharp/Dependencies/Converters/TimestampConverter.cs",
"diff": "@@ -28,9 +28,10 @@ namespace ExchangeSharp\npublic override object ReadJson(JsonReader reader, Type objectType, ob... | C# | MIT License | jjxtra/exchangesharp | Remove parse call change to invariant convert |
329,148 | 07.08.2018 13:38:28 | 21,600 | 5e9e83375bd3fd6e90e873fb3bacb4dfbbd917ad | Ensure \r\n is encoded | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -314,7 +314,14 @@ namespace ExchangeSharp\n/// <returns>Form encoded string</returns>\npublic static string FormEncode(this string s)\n{\n- return (s ?? ... | C# | MIT License | jjxtra/exchangesharp | Ensure \r\n is encoded |
329,148 | 07.08.2018 14:04:21 | 21,600 | a7cf74c150049333750b2ac0c0465db1ce67af61 | Remove parse, change to convert invariant | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -327,7 +327,7 @@ namespace ExchangeSharp\n}\nunchecked\n{\n- long longNonce = long.Parse(File.ReadAllText(tempFile), CultureInfo.InvariantCulture) + 1;\n+ long... | C# | MIT License | jjxtra/exchangesharp | Remove parse, change to convert invariant |
329,148 | 11.08.2018 14:10:40 | 21,600 | 7d73a8bea6d698f6d816aa308406a9bc53c91c83 | Move signalr manager, add additional logging | [
{
"change_type": "RENAME",
"old_path": "ExchangeSharp/API/Common/SignalrManager.cs",
"new_path": "ExchangeSharp/Utility/SignalrManager.cs",
"diff": "@@ -410,8 +410,10 @@ namespace ExchangeSharp\n{\nawait StartAsync();\n}\n- catch\n+ catch (Exception ex)\n{\n+ Logger.Debug(ex.ToString());\n+\n// wait... | C# | MIT License | jjxtra/exchangesharp | Move signalr manager, add additional logging |
329,148 | 11.08.2018 14:16:02 | 21,600 | d54189a715d80cae7834e270b5c20a3bfa13eb7c | Use a proper sempahore to lock the reconnect loop | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/SignalrManager.cs",
"new_path": "ExchangeSharp/Utility/SignalrManager.cs",
"diff": "@@ -288,7 +288,7 @@ namespace ExchangeSharp\nprivate HubConnection hubConnection;\nprivate IHubProxy hubProxy;\nprivate WebsocketCustomTransport customTra... | C# | MIT License | jjxtra/exchangesharp | Use a proper sempahore to lock the reconnect loop |
329,148 | 11.08.2018 16:33:52 | 21,600 | 56cdf5fe4fea0fad5ecb7701f27c2dd883d18870 | Make connection and disconnect event thread safe | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -444,8 +444,8 @@ namespace ExchangeSharp\n(\nstring url,\nFunc<IWebSocket, byte[], Task> messageCallback,\n- Func<IWebSocket, Task> connectCallback = null,\n- ... | C# | MIT License | jjxtra/exchangesharp | Make connection and disconnect event thread safe |
329,148 | 11.08.2018 16:36:05 | 21,600 | be590a1180b367e0aa62b7c3eb9934718b6a1888 | Stop actions with no exceptions if disposed | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -298,7 +298,7 @@ namespace ExchangeSharp\n{\nforeach (var action in actions.Where(a => a != null))\n{\n- while (true)\n+ while (!disposed)\n{\ntry\n{... | C# | MIT License | jjxtra/exchangesharp | Stop actions with no exceptions if disposed |
329,148 | 11.08.2018 16:37:39 | 21,600 | 5bb9722fd133f10cfd8ecd9d29389a2967df6df1 | Make a copy of actions to ensure no one can modify the array | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -273,9 +273,10 @@ namespace ExchangeSharp\n{\nif (actions != null && actions.Length != 0)\n{\n+ Func<IWebSocket, Task>[] actionsCopy = actions;\nmess... | C# | MIT License | jjxtra/exchangesharp | Make a copy of actions to ensure no one can modify the array |
329,148 | 11.08.2018 16:48:01 | 21,600 | 9bc06199da25371c1261fdf821f2415747cabbed | Put dispose in a task | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -44,45 +44,45 @@ namespace ExchangeSharp\n/// <summary>\n/// Close cleanly\n/// </summary>\n- /// <param name=\"closeStatus\"></param>\n- /// <param ... | C# | MIT License | jjxtra/exchangesharp | Put dispose in a task |
329,148 | 11.08.2018 16:51:23 | 21,600 | 21f9e7136b5c11b84565abcfc9464b788c41254a | Ignore cancel exceptions | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -248,12 +248,16 @@ namespace ExchangeSharp\n}\n}\n}\n+ catch (OperationCanceledException)\n+ {\n+ // dont care\n+ }\ncatch (Exception ex)\n{\nLogger.... | C# | MIT License | jjxtra/exchangesharp | Ignore cancel exceptions |
329,148 | 12.08.2018 11:26:08 | 21,600 | abf15a90c74c467a4f9b1181eb2093ef66d4278c | Allow * for all symbols | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_Example.cs",
"new_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_Example.cs",
"diff": "@@ -52,12 +52,20 @@ namespace ExchangeSharpConsole\nprivate static string[] GetSymbols(Dictionary<string, string... | C# | MIT License | jjxtra/exchangesharp | Allow * for all symbols |
329,092 | 12.08.2018 13:25:51 | 25,200 | 678db9541bcf2d2dd4e440780afcd2ac2ab10e37 | Allow Name to be editable by unit tests | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -129,7 +129,7 @@ namespace ExchangeSharp\n/// <summary>\n/// Gets the name of the API\n/// </summary>\n- public string Name { get; private set; }\n+ public vir... | C# | MIT License | jjxtra/exchangesharp | Allow Name to be editable by unit tests (#240) |
329,148 | 13.08.2018 08:22:47 | 21,600 | dd30d98eb6024c05560ade868f1d2a1891a12d34 | Add md5 sign with key | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -712,6 +712,19 @@ namespace ExchangeSharp\nreturn Convert.ToBase64String(hashmessage);\n}\n+ /// <summary>\n+ /// Sign a message with MD5 hash\n+ /// </s... | C# | MIT License | jjxtra/exchangesharp | Add md5 sign with key |
329,148 | 13.08.2018 09:00:03 | 21,600 | 52adf63188918c87315708b56f15661d0989e563 | Add password and code fields to withdraw request
Some exchanges require a password and 3rd party auth code to withdraw even from API, so those fields are now added. Also renamed Symbol to Currency to better represent that it is a single asset rather than a pair. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Abucoins/ExchangeAbucoinsAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Abucoins/ExchangeAbucoinsAPI.cs",
"diff": "@@ -432,7 +432,7 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeWithdrawalResponse> OnWithdrawA... | C# | MIT License | jjxtra/exchangesharp | Add password and code fields to withdraw request
Some exchanges require a password and 3rd party auth code to withdraw even from API, so those fields are now added. Also renamed Symbol to Currency to better represent that it is a single asset rather than a pair. |
329,148 | 14.08.2018 09:15:33 | 21,600 | 5445c97cf73c27f655affcf9c990d9d5949e6453 | Roll back stupid Huobi private signature | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -406,7 +406,7 @@ namespace ExchangeSharp\n/// <param name=\"url\">Path and query</param>\n/// <param name=\"baseUrl\">Override the base url, null for the defau... | C# | MIT License | jjxtra/exchangesharp | Roll back stupid Huobi private signature |
329,148 | 14.08.2018 09:21:27 | 21,600 | 8be8b9743a80430f842cfc08e768087bc5d51c9d | Rename to MarketId | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Model/ExchangeMarket.cs",
"new_path": "ExchangeSharp/Model/ExchangeMarket.cs",
"diff": "@@ -15,8 +15,8 @@ namespace ExchangeSharp\n/// <summary>Representation of a market on an exchange.</summary>\npublic sealed class ExchangeMarket\n{\n- /// <su... | C# | MIT License | jjxtra/exchangesharp | Rename to MarketId |
329,148 | 14.08.2018 10:05:31 | 21,600 | 42878297f53479342acbf89c2463aef0ec5128fb | Add JWT encode/decode | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -297,6 +297,37 @@ namespace ExchangeSharp\nreturn DecompressGzip(bytes).ToStringFromUTF8();\n}\n+ /// <summary>\n+ /// JWT encode - converts to base64 st... | C# | MIT License | jjxtra/exchangesharp | Add JWT encode/decode |
329,148 | 14.08.2018 10:06:27 | 21,600 | 1c89c7e01ffc87eb11ab7b8344c19c59c6cb9770 | Add this for jwt encode / decode | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -302,7 +302,7 @@ namespace ExchangeSharp\n/// </summary>\n/// <param name=\"input\">Input string</param>\n/// <returns>Encoded string</returns>\n- public... | C# | MIT License | jjxtra/exchangesharp | Add this for jwt encode / decode |
329,148 | 14.08.2018 10:14:34 | 21,600 | ee62d80286be2f2a886b40b70102d50477aa9ba9 | JWT byte[] versions | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"new_path": "ExchangeSharp/Utility/CryptoUtility.cs",
"diff": "@@ -297,6 +297,19 @@ namespace ExchangeSharp\nreturn DecompressGzip(bytes).ToStringFromUTF8();\n}\n+ /// <summary>\n+ /// JWT encode - converts to base64 st... | C# | MIT License | jjxtra/exchangesharp | JWT byte[] versions |
329,148 | 14.08.2018 15:32:08 | 21,600 | 1694f45da13b6dc38895c47ed35a7cf4886e8759 | Ensure that all params execute for signalr
In the event the connection fails, an exception will be thrown and all parameters will be forced to re-run in the hubProxy.Invoke call. A dispose of the connection or manager will end the loop. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/SignalrManager.cs",
"new_path": "ExchangeSharp/Utility/SignalrManager.cs",
"diff": "@@ -33,6 +33,7 @@ namespace ExchangeSharp\nprivate readonly SignalrManager manager;\nprivate Func<string, Task> callback;\nprivate string functionFullName... | C# | MIT License | jjxtra/exchangesharp | Ensure that all params execute for signalr
In the event the connection fails, an exception will be thrown and all parameters will be forced to re-run in the hubProxy.Invoke call. A dispose of the connection or manager will end the loop. |
329,148 | 15.08.2018 16:27:26 | 21,600 | e27cfbf090985a56595f3dd49cec7370df440f44 | Turn off keep alive for REST calls | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/APIRequestMaker.cs",
"new_path": "ExchangeSharp/API/Common/APIRequestMaker.cs",
"diff": "@@ -36,6 +36,7 @@ namespace ExchangeSharp\n{\nthis.uri = fullUri;\nrequest = HttpWebRequest.Create(fullUri) as HttpWebRequest;\n+ request.KeepAliv... | C# | MIT License | jjxtra/exchangesharp | Turn off keep alive for REST calls |
329,148 | 15.08.2018 16:33:06 | 21,600 | 187906748c95dcd36e89a032689521f1f27397bb | Make RequestUri read only | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/APIRequestMaker.cs",
"new_path": "ExchangeSharp/API/Common/APIRequestMaker.cs",
"diff": "@@ -70,7 +70,6 @@ namespace ExchangeSharp\npublic Uri RequestUri\n{\nget { return request.RequestUri; }\n- set { request.RequestUri = value; }\n}\... | C# | MIT License | jjxtra/exchangesharp | Make RequestUri read only |
329,148 | 17.08.2018 17:32:15 | 21,600 | 74a0b4dcdb2c3c6eaa2e38aaaa76af53fe27729c | Use object when sending json to web socket
Allow SendMessageAsync to take string, byte[] or object.
Huobi order book can now do multiple symbols at once. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Abucoins/ExchangeAbucoinsAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Abucoins/ExchangeAbucoinsAPI.cs",
"diff": "@@ -488,7 +488,7 @@ namespace ExchangeSharp\n}, async (_socket) =>\n{\n// subscribe to done channel\n- await _sock... | C# | MIT License | jjxtra/exchangesharp | Use object when sending json to web socket
Allow SendMessageAsync to take string, byte[] or object.
Huobi order book can now do multiple symbols at once. |
329,148 | 18.08.2018 10:06:23 | 21,600 | c252e073fe59fde9f15b6c4a0ead1fe430b4439f | Fix not implemented reporting | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_ExchangeTests.cs",
"new_path": "ExchangeSharpConsole/Console/ExchangeSharpConsole_ExchangeTests.cs",
"diff": "@@ -144,16 +144,9 @@ namespace ExchangeSharpConsole\nConsole.WriteLine($\"OK ({trades.Length} trades... | C# | MIT License | jjxtra/exchangesharp | Fix not implemented reporting |
329,148 | 18.08.2018 12:06:11 | 21,600 | 989e446180577e150431829d953a1220c77af292 | Add new definitions file to ease making new exchanges | [
{
"change_type": "MODIFY",
"old_path": "CONTRIBUTING.md",
"new_path": "CONTRIBUTING.md",
"diff": "@@ -13,12 +13,9 @@ Please follow these coding guidelines...\n- Wrap all if statements with curly braces, makes debug and set breakpoints much easier, along with adding new code to the if statement block... | C# | MIT License | jjxtra/exchangesharp | Add new definitions file to ease making new exchanges |
329,148 | 24.08.2018 18:23:08 | 21,600 | e9421eae910b2ae87ee63ba039394d26b6aab513 | Fix coinbase API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"diff": "@@ -100,6 +100,13 @@ namespace ExchangeSharp\nreturn base.CanMakeAuthenticatedRequest(payload) && Passphrase != nu... | C# | MIT License | jjxtra/exchangesharp | Fix coinbase API |
329,148 | 24.08.2018 18:31:12 | 21,600 | 8e442db4e1c227e88f07a6b260ed8a46d2f947b3 | Try/catch coinbase nonce request | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"diff": "@@ -102,11 +102,17 @@ namespace ExchangeSharp\n}\nprotected override async Task OnGetNonceOffset()\n+ {\n+ try\n{\... | C# | MIT License | jjxtra/exchangesharp | Try/catch coinbase nonce request |
329,148 | 27.08.2018 13:04:30 | 21,600 | 1597bb3b348942014d363a248f3b4ce387c32669 | Fix Huobi private API | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"diff": "@@ -36,7 +36,7 @@ namespace ExchangeSharp\npublic ExchangeHuobiAPI()\n{\nRequestContentType = \"application/x-www-form-urlenco... | C# | MIT License | jjxtra/exchangesharp | Fix Huobi private API |
329,148 | 27.08.2018 13:33:39 | 21,600 | 8238f20a8f5ad4c9163c02ec945ec4fcd0fdb0d9 | Use ordinal compare for Huobi signing | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"diff": "@@ -79,7 +79,7 @@ namespace ExchangeSharp\nif (CanMakeAuthenticatedRequest(payload))\n{\n// must sort case sensitive\n- var di... | C# | MIT License | jjxtra/exchangesharp | Use ordinal compare for Huobi signing |
329,148 | 28.08.2018 07:48:07 | 21,600 | f40b8699ff01888dffc74a9558ea6296571574d8 | Additional Huobi fixes | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"diff": "@@ -68,6 +68,7 @@ namespace ExchangeSharp\nif (request.Method == \"POST\")\n{\nrequest.AddHeader(\"content-type\", \"applicati... | C# | MIT License | jjxtra/exchangesharp | Additional Huobi fixes |
329,148 | 13.09.2018 17:11:00 | 21,600 | a6f38f3a7fdeb293d198347538ab3c66d126cf9a | Remove redundant callback null checks
All web socket null callback checks are done in the ExchangeAPI class now, removing the need for any overrides to check | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs",
"diff": "@@ -230,10 +230,6 @@ namespace ExchangeSharp\nprotected override IWebSocket OnGetTradesWebSocket(Action<KeyValuePa... | C# | MIT License | jjxtra/exchangesharp | Remove redundant callback null checks
All web socket null callback checks are done in the ExchangeAPI class now, removing the need for any overrides to check |
329,148 | 17.09.2018 15:31:29 | 21,600 | 1f75af7abf68e55419b0518551c7eb2bd65987cb | Call out secure string to bytes with unsecure in method name | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -881,7 +881,7 @@ namespace ExchangeSharp\nvar query = (url.Query ?? string.Empty).Trim('?', '&');\nstring newQuery ... | C# | MIT License | jjxtra/exchangesharp | Call out secure string to bytes with unsecure in method name |
329,148 | 04.10.2018 11:22:26 | 21,600 | 8f5eda4c1f74aab12b58a2fbc58a1c78bf8596d3 | Add separate text and binary callback to ClientWebSocket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -459,8 +459,17 @@ namespace ExchangeSharp\nWebSocketConnectionDelegate disconnectCallback = null\n)\n{\n+ if (messageCallback == null)\n+ {\n+ throw new Argume... | C# | MIT License | jjxtra/exchangesharp | Add separate text and binary callback to ClientWebSocket |
329,148 | 04.10.2018 13:20:27 | 21,600 | 5cf449b0998c374a73f5bf532c6f44d9e953ab09 | Kucoin account balance paging | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -244,33 +244,12 @@ namespace ExchangeSharp\nprotected override async Task<Dictionary<string, decimal>> OnGetAmountsAsyn... | C# | MIT License | jjxtra/exchangesharp | Kucoin account balance paging |
329,148 | 04.10.2018 14:08:13 | 21,600 | 14381fff00de574bfe410abf121204fb7ed11368 | Cache get amounts / get amounts to trade for 1 minute | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -444,6 +444,7 @@ namespace ExchangeSharp\nprivate async Task<Dictionary<string, decimal>> OnGetAmountsInternalAsync(boo... | C# | MIT License | jjxtra/exchangesharp | Cache get amounts / get amounts to trade for 1 minute |
329,148 | 04.10.2018 14:12:16 | 21,600 | 0090ceb7b6233aa481df1fd6886f4b3e1152a03a | Increase limits for Kucoin private api | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -33,6 +33,10 @@ namespace ExchangeSharp\nRequestContentType = \"x-www-form-urlencoded\";\nNonceStyle = NonceStyle.UnixM... | C# | MIT License | jjxtra/exchangesharp | Increase limits for Kucoin private api |
329,148 | 04.10.2018 14:17:19 | 21,600 | d27f58049c9dfc4441b285aa89e5d25ee890c003 | Remove key check, keys would always be null | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -33,11 +33,8 @@ namespace ExchangeSharp\nRequestContentType = \"x-www-form-urlencoded\";\nNonceStyle = NonceStyle.UnixM... | C# | MIT License | jjxtra/exchangesharp | Remove key check, keys would always be null |
329,112 | 09.10.2018 09:29:23 | 18,000 | e5e1ce3fe2cdb4171f61ab238e79b8e83843155f | Add option to include zero balances when calling GetMarginAmountsAvailableToTradeAsync | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs",
"diff": "@@ -651,7 +651,7 @@ namespace ExchangeSharp\nreturn amounts;\n}\n- protected override async Task<Dictionary<string... | C# | MIT License | jjxtra/exchangesharp | Add option to include zero balances when calling GetMarginAmountsAvailableToTradeAsync (#260) |
329,112 | 09.10.2018 09:30:08 | 18,000 | d22ea34a8f3e425ae2cb706247d389db07999e09 | Fix afterDate for OnGetCompletedOrderDetailsAsync. Add test method. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -556,8 +556,7 @@ namespace ExchangeSharp\npayload[\"symbol\"] = symbol;\nif (afterDate != null)\n{\n- // TODO: time... | C# | MIT License | jjxtra/exchangesharp | Fix afterDate for OnGetCompletedOrderDetailsAsync. Add test method. (#259) |
329,148 | 09.10.2018 09:52:08 | 21,600 | 15096d22bfb3cfc282557fe2c306f224e34c79a7 | Implement method caching mechanism
Provide a way to easily turn caching on and off per method | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -12,11 +12,14 @@ THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI\nusing System;\nusing System.Collections.Generic;\n+using S... | C# | MIT License | jjxtra/exchangesharp | Implement method caching mechanism
Provide a way to easily turn caching on and off per method |
329,148 | 09.10.2018 10:01:57 | 21,600 | d4d666220c991f6ebd28b314876b8dfbda0f9106 | Use ICache interface
In case of distributed cache needs, use ICache instead of MemoryCache to allow a different cache implementation to be used. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"new_path": "ExchangeSharp/API/Common/BaseAPI.cs",
"diff": "@@ -207,10 +207,19 @@ namespace ExchangeSharp\n/// </summary>\npublic Dictionary<string, TimeSpan> MethodCachePolicy { get; } = new Dictionary<string, TimeSpan>()... | C# | MIT License | jjxtra/exchangesharp | Use ICache interface
In case of distributed cache needs, use ICache instead of MemoryCache to allow a different cache implementation to be used. |
329,148 | 09.10.2018 21:13:22 | 21,600 | d228c9f14679100459b0d81fb6630c6f5f6d895f | Make it a little easier to turn off caching | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs",
"diff": "@@ -28,6 +28,12 @@ namespace ExchangeSharp\n/// </summary>\npublic const char GlobalSymbolSeparator = '-';\n+ /// <summary>\n+ /// Wheth... | C# | MIT License | jjxtra/exchangesharp | Make it a little easier to turn off caching |
329,089 | 15.10.2018 10:41:24 | 25,200 | 729e27b70cdad4c03b94f01750a5412e8479736b | Handle additional Poloniex heartbeat type | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Poloniex/ExchangePoloniexAPI.cs",
"diff": "@@ -413,9 +413,8 @@ namespace ExchangeSharp\nJToken token = JToken.Parse(msg.ToStringFromUTF8());\nint msgId = tok... | C# | MIT License | jjxtra/exchangesharp | Handle additional Poloniex heartbeat type (#265) |
329,158 | 19.10.2018 22:55:59 | -28,800 | a12b17ff77ba71f233c228529eb0ef409f6bbd4e | Okex websocket deflate compression | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"diff": "@@ -23,7 +23,7 @@ namespace ExchangeSharp\n{\npublic override string BaseUrl { get; set; } = \"https://www.okex.com/api/v1\";\npub... | C# | MIT License | jjxtra/exchangesharp | Okex websocket deflate compression (#271) |
329,092 | 19.10.2018 07:56:35 | 25,200 | 1504d2f0dde413c54fabff058b43611aa380739f | fix build break in setter | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"new_path": "ExchangeSharp/Utility/ClientWebSocket.cs",
"diff": "@@ -181,7 +181,11 @@ namespace ExchangeSharp\nset\n{\n_keepAlive = value;\n- webSocket?.KeepAliveInterval = value;\n+\n+ if (this.webSocket != null)\n+ ... | C# | MIT License | jjxtra/exchangesharp | fix build break in setter (#273) |
329,089 | 30.10.2018 08:50:32 | 25,200 | 6f46e2f766679be71cb3e48fe05efd99f1ff53cc | GetMarketSymbolsMetadata for ZBcom | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Coinbase/ExchangeCoinbaseAPI.cs",
"diff": "@@ -236,7 +236,7 @@ namespace ExchangeSharp\nawait GetNoncePayloadAsync(),\n\"POST\");\n- return new ExchangeDepos... | C# | MIT License | jjxtra/exchangesharp | GetMarketSymbolsMetadata for ZBcom (#282) |
329,089 | 31.10.2018 07:54:55 | 25,200 | 542a9cb0888265f8c67c92bba1fefbabda742acc | Fix ZBcom MarketSymbol separator bug | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/ZBcom/ExchangeZBcomAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/ZBcom/ExchangeZBcomAPI.cs",
"diff": "@@ -34,7 +34,7 @@ namespace ExchangeSharp\n{\nif (symbol == null) return symbol;\n- return (symbol ?? string.Empty).ToLowerInv... | C# | MIT License | jjxtra/exchangesharp | Fix ZBcom MarketSymbol separator bug (#283) |
329,148 | 31.10.2018 09:04:03 | 21,600 | 53f58ddbda40cc3505db9e160baa15c08af62315 | Pull request compile error fixes | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs",
"diff": "@@ -325,15 +325,11 @@ namespace ExchangeSharp\npublic bool IsBuy { get; }\n}\n- public async Task<IEnumerable<Bits... | C# | MIT License | jjxtra/exchangesharp | Pull request compile error fixes |
329,112 | 31.10.2018 22:35:29 | 18,000 | 2576fb002bb8e37eb137b6f9803f3e5ca859710c | Fix bad argument when creating KeyValuePair objects inside OnGetTickersWebSocket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -250,7 +250,7 @@ namespace ExchangeSharp\nforeach (JToken childToken in token[\"data\"])\n{\nticker = ParseTickerWe... | C# | MIT License | jjxtra/exchangesharp | Fix bad argument when creating KeyValuePair objects inside OnGetTickersWebSocket (#286) |
329,112 | 01.11.2018 09:59:56 | 18,000 | 8d8b5d8e52669c3c8c7c8a65969c675cc370a462 | Need to round startTime parameter to nearest integer for Binance OnGetCompletedOrderDetailsAsync | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -565,7 +565,7 @@ namespace ExchangeSharp\npayload[\"symbol\"] = marketSymbol;\nif (afterDate != null)\n{\n- payload... | C# | MIT License | jjxtra/exchangesharp | Need to round startTime parameter to nearest integer for Binance OnGetCompletedOrderDetailsAsync (#288) |
329,089 | 01.11.2018 08:00:31 | 25,200 | c491d84e8e492a2511f39ebdfd59bbce0a132149 | Fix parsing of marketSymbol and Id in Kucoin trade stream. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -448,9 +448,10 @@ namespace ExchangeSharp\nif (token[\"type\"].ToStringInvariant() == \"message\")\n{\nvar dataToken = ... | C# | MIT License | jjxtra/exchangesharp | Fix parsing of marketSymbol and Id in Kucoin trade stream. (#287) |
329,148 | 01.11.2018 10:08:54 | 21,600 | 2fbb61a195de75a79ef73062b1ef97d4ef69785c | Fix Kraken 7 char symbol normalization | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs",
"diff": "@@ -51,7 +51,8 @@ namespace ExchangeSharp\n{\nif (exchangeSymbolToNormalizedSymbol.TryGetValue(marketSymbol, out string no... | C# | MIT License | jjxtra/exchangesharp | Fix Kraken 7 char symbol normalization |
329,148 | 01.11.2018 19:17:02 | 21,600 | aed3218e74ab658ac4ff6875297c8c3ecc3047e4 | Check for existance of data in static constructor
Derived class can execute static constructor first which can fill ExchangeGlobalCurrencyReplacements with data. | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs",
"diff": "@@ -185,9 +185,14 @@ namespace ExchangeSharp\n{\napis[api.Name] = null;\n}\n+\n+ // in case derived class is accessed first, check for e... | C# | MIT License | jjxtra/exchangesharp | Check for existance of data in static constructor
Derived class can execute static constructor first which can fill ExchangeGlobalCurrencyReplacements with data. |
329,148 | 02.11.2018 09:13:28 | 21,600 | 691236eccde80f5fc162beb09e4334e1a40d53b0 | Fix wrong order id | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Hitbtc/ExchangeHitbtcAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Hitbtc/ExchangeHitbtcAPI.cs",
"diff": "@@ -306,12 +306,13 @@ namespace ExchangeSharp\nJToken token = await MakeJsonRequestAsync<JToken>(\"/order\", null, payload... | C# | MIT License | jjxtra/exchangesharp | Fix wrong order id |
329,089 | 04.11.2018 21:55:07 | 28,800 | 3d6b2a4ae2726ff116d987d2c5c65392faf1ce5b | Handle situation where project configuration file does not exist in Logger | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/Logger.cs",
"new_path": "ExchangeSharp/Utility/Logger.cs",
"diff": "@@ -109,8 +109,13 @@ namespace ExchangeSharp\n{\ntry\n{\n- LogFactory factory = LogManager.LoadConfiguration(ConfigurationManager.OpenExeConfiguration(ConfigurationUserLe... | C# | MIT License | jjxtra/exchangesharp | Handle situation where project configuration file does not exist in Logger (#294) |
329,089 | 04.11.2018 21:55:37 | 28,800 | 5166e7572a462ec357808b4b80ab337317fcd3b6 | Log BitMEX trade stream error | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -240,7 +240,12 @@ namespace ExchangeSharp\nvar str = msg.ToStringFromUTF8();\nJToken token = JToken.Parse(str);\n- if (... | C# | MIT License | jjxtra/exchangesharp | Log BitMEX trade stream error (#293) |
329,089 | 06.11.2018 18:56:51 | 28,800 | d3cb880f38c343307b6ef66e954579a51efe72dc | Subscribe to trade stream without symbols | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs",
"diff": "@@ -251,6 +251,10 @@ namespace ExchangeSharp\nprotected override IWebSocket OnGetTradesWebSocket(Action<KeyValuePa... | C# | MIT License | jjxtra/exchangesharp | Subscribe to trade stream without symbols (#297) |
329,089 | 07.11.2018 14:22:16 | 28,800 | 10a2ba188d28249f34de48ec60ebb9da161d6528 | fix OKex order status code | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"diff": "@@ -563,8 +563,10 @@ namespace ExchangeSharp\nreturn ExchangeAPIOrderResult.FilledPartially;\ncase 2:\nreturn ExchangeAPIOrderResu... | C# | MIT License | jjxtra/exchangesharp | fix OKex order status code (#298) |
329,089 | 11.11.2018 19:31:52 | 28,800 | 95f6ea50dde25e94e4237a65c05c1289cfe745fc | GetMarketSymbolsMetadata for Bitstamp | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Bitstamp/ExchangeBitstampAPI.cs",
"diff": "@@ -95,6 +95,33 @@ namespace ExchangeSharp\nreturn symbols;\n}\n+ protected override async Task<IEnumerable<Exchan... | C# | MIT License | jjxtra/exchangesharp | GetMarketSymbolsMetadata for Bitstamp (#300) |
329,148 | 15.11.2018 16:29:15 | 25,200 | b17259bcc41b5dbf68ab4e66a58d14790a5508ff | Switch to string order id | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Cryptopia/ExchangeCryptopiaAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Cryptopia/ExchangeCryptopiaAPI.cs",
"diff": "@@ -255,7 +255,7 @@ namespace ExchangeSharp\n{\norders.Add(new ExchangeOrderResult()\n{\n- OrderId = order[\"T... | C# | MIT License | jjxtra/exchangesharp | Switch to string order id |
329,154 | 19.11.2018 03:43:29 | 0 | 8081a4a282632fe664c9c11c9ddcb6148617837b | Added MinWithdrawSize | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Binance/ExchangeBinanceAPI.cs",
"diff": "@@ -34,6 +34,7 @@ namespace ExchangeSharp\n// base address for APIs used by the Binance website and not published in t... | C# | MIT License | jjxtra/exchangesharp | Added MinWithdrawSize (#304) |
329,088 | 27.11.2018 18:33:43 | -10,800 | 3b7c5e08672385787cbddc523fd6171422476574 | Update ExchangeOkexAPI.cs
error BaseCurrency | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"diff": "@@ -134,8 +134,8 @@ namespace ExchangeSharp\n{\nMarketSymbol = marketName,\nIsActive = marketSymbolToken[\"online\"].ConvertInvari... | C# | MIT License | jjxtra/exchangesharp | Update ExchangeOkexAPI.cs (#310)
error BaseCurrency |
329,101 | 05.12.2018 22:06:30 | -3,600 | f95dd67a97d5ab8d996c6b2be3895e71b1698b45 | kraken & cryptoutility changes
* Update CryptoUtility.cs
* Update ExchangeKrakenAPI.cs
added new pairs on exchangeSymbolToNormalizedSymbol | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kraken/ExchangeKrakenAPI.cs",
"diff": "@@ -80,6 +80,9 @@ namespace ExchangeSharp\n/// </summary>\nprivate static readonly IReadOnlyDictionary<string, string> exc... | C# | MIT License | jjxtra/exchangesharp | kraken & cryptoutility changes (#318)
* Update CryptoUtility.cs
* Update ExchangeKrakenAPI.cs
added new pairs on exchangeSymbolToNormalizedSymbol |
329,157 | 10.12.2018 01:48:12 | -28,800 | 59ff5885c8200a595b11e0a47ea23414c23c3d71 | Method is publicly accessible now | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -206,9 +206,7 @@ namespace ExchangeSharp\nendDate = endDate ?? CryptoUtility.UtcNow;\nstartDate = startDate ?? CryptoUt... | C# | MIT License | jjxtra/exchangesharp | Method is publicly accessible now (#322) |
329,089 | 10.12.2018 19:10:52 | 28,800 | d20b1d41ab939f80137ba57c84596534af2a9d83 | Increase fetched symbols from 100 to 500 | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -194,7 +194,7 @@ namespace ExchangeSharp\n*/\nList<ExchangeMarket> markets = new List<ExchangeMarket>();\n- JToken allS... | C# | MIT License | jjxtra/exchangesharp | Increase fetched symbols from 100 to 500 (#323) |
329,089 | 20.12.2018 21:20:33 | 28,800 | 145cba8a86ee4cfe737c9a39bc552c18e9320680 | fix OKex Trade stream bugs
fetch only active symbols
log stream error | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Okex/ExchangeOkexAPI.cs",
"diff": "@@ -614,7 +614,11 @@ namespace ExchangeSharp\nprivate IEnumerable<ExchangeTrade> ParseTradesWebSocket(JToken token)\n{\nvar trades... | C# | MIT License | jjxtra/exchangesharp | fix OKex Trade stream bugs (#329)
- fetch only active symbols
- log stream error |
329,089 | 21.12.2018 05:57:55 | 28,800 | 08ee043b8eccfeae01427b3c4d9a575ec51f4bd0 | remove old methods containing NotImplementedException() | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs",
"diff": "@@ -757,11 +757,6 @@ namespace ExchangeSharp\n}\n}\n- protected override Task<IEnumerable<ExchangeTransaction>> OnGetDepositHi... | C# | MIT License | jjxtra/exchangesharp | remove old methods containing NotImplementedException() (#330) |
329,148 | 21.12.2018 21:15:04 | 25,200 | ce5e3b7e04c660ed7e4dbfce1cd638b28fb2d8be | Fire initial connect even for signalr web socket | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/SignalrManager.cs",
"new_path": "ExchangeSharp/Utility/SignalrManager.cs",
"diff": "@@ -46,6 +46,7 @@ namespace ExchangeSharp\nprivate Func<string, Task> callback;\nprivate string functionFullName;\nprivate bool disposed;\n+ private bool ... | C# | MIT License | jjxtra/exchangesharp | Fire initial connect even for signalr web socket |
329,148 | 22.12.2018 10:18:08 | 25,200 | 903cf46d4703c5e61436db204b8e68292087f385 | Fix break from last checkin | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/Utility/SignalrManager.cs",
"new_path": "ExchangeSharp/Utility/SignalrManager.cs",
"diff": "@@ -508,6 +508,7 @@ namespace ExchangeSharp\ntry\n{\nawait StartAsync();\n+ connectCallback?.Invoke();\n}\ncatch (Exception ex)\n{\n"
},
{
"change... | C# | MIT License | jjxtra/exchangesharp | Fix break from last checkin |
329,083 | 06.01.2019 14:21:21 | -39,600 | a07fb7a1ea78d3fe558eff928e69a3901d14c9da | Fix BitMEX orderbook websocket request string | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -352,7 +352,7 @@ namespace ExchangeSharp\n{\nmarketSymbols = (await GetMarketSymbolsAsync()).ToArray();\n}\n- await _so... | C# | MIT License | jjxtra/exchangesharp | Fix BitMEX orderbook websocket request string (#338) |
329,148 | 16.01.2019 14:10:01 | 25,200 | 1a32f7d2aabf8eebbf9d2f9af0a312a4c35588df | Bitfinex changed api parameter for order book | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Bitfinex/ExchangeBitfinexAPI.cs",
"diff": "@@ -319,7 +319,8 @@ namespace ExchangeSharp\nprotected override async Task<ExchangeOrderBook> OnGetOrderBookAsync(... | C# | MIT License | jjxtra/exchangesharp | Bitfinex changed api parameter for order book |
329,109 | 16.02.2019 00:10:03 | 0 | df7148f1854f0bd2b7c31e7e0fb0db111388ea55 | Support BitMEX execution instructions
https://www.bitmex.com/api/explorer/#!/Order/Order_new | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -558,6 +558,10 @@ namespace ExchangeSharp\npayload[\"side\"] = order.IsBuy ? \"Buy\" : \"Sell\";\npayload[\"orderQty\"]... | C# | MIT License | jjxtra/exchangesharp | Support BitMEX execution instructions (#345)
https://www.bitmex.com/api/explorer/#!/Order/Order_new |
329,106 | 23.02.2019 00:36:26 | -32,400 | 98999e97f2ba35038be2691492f148de964c7912 | invert PublicApiKey and Private API key in bitbank | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitBank/ExchangeBitBankAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitBank/ExchangeBitBankAPI.cs",
"diff": "@@ -7,9 +7,6 @@ using static ExchangeSharp.CryptoUtility;\nnamespace ExchangeSharp\n{\n- /// <summary>\n- /// PublicAp... | C# | MIT License | jjxtra/exchangesharp | invert PublicApiKey and Private API key in bitbank (#351) |
329,089 | 26.02.2019 19:03:25 | 18,000 | 618012e934419d663535f098c0036b2d6964634b | updates GetMarketSymbolsAsync and GetMarketSymbolsMetadataAsync to work with KuCoin API 2.0 | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/Kucoin/ExchangeKucoinAPI.cs",
"diff": "@@ -26,7 +26,7 @@ namespace ExchangeSharp\n{\npublic sealed partial class ExchangeKucoinAPI : ExchangeAPI\n{\n- public ove... | C# | MIT License | jjxtra/exchangesharp | updates GetMarketSymbolsAsync and GetMarketSymbolsMetadataAsync to work with KuCoin API 2.0 (#353) |
329,106 | 05.03.2019 12:24:49 | -32,400 | b9ba39765abe91553dd75727302cb894e43b971f | Support GetTickers in ExchangeBitBankAPI and some bugfix | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitBank/ExchangeBitBankAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitBank/ExchangeBitBankAPI.cs",
"diff": "@@ -31,6 +31,7 @@ namespace ExchangeSharp\nNonceOffset = TimeSpan.FromSeconds(0.1);\nMarketSymbolIsUppercase = false;\... | C# | MIT License | jjxtra/exchangesharp | Support GetTickers in ExchangeBitBankAPI and some bugfix (#357) |
329,083 | 06.03.2019 10:45:57 | -39,600 | 0d2bf9b9acb0e72dbc4500e90986aa78cafe02cd | Fix BitMEX bulk order request payload | [
{
"change_type": "MODIFY",
"old_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"new_path": "ExchangeSharp/API/Exchanges/BitMEX/ExchangeBitMEXAPI.cs",
"diff": "@@ -542,7 +542,7 @@ namespace ExchangeSharp\nAddOrderToPayload(order, subPayload);\norderRequests.Add(subPayload);\n}\n- p... | C# | MIT License | jjxtra/exchangesharp | Fix BitMEX bulk order request payload (#359) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.