Skip to content

Commit 9b92ad4

Browse files
authored
Release/4.0.0 (#15)
* Updated CryptoExchange.Net to version 9.0.0, see https://github.com/JKorf/CryptoExchange.Net/releases/ * Added support for Native AOT compilation * Updated all IEnumerable response and model types to array response types * Updated some response models * Removed Newtonsoft.Json dependency * Fixed some typos
1 parent 1122dc2 commit 9b92ad4

File tree

107 files changed

+5999
-159297
lines changed

Some content is hidden

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

107 files changed

+5999
-159297
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,10 @@ What endpoints and subscriptions are called.
1616
**Expected behavior**
1717
A clear and concise description of what you expected to happen.
1818

19-
**Debug logging**
20-
Add debug logging related to the issue. Enable Debug logging in the client options by settings LogLevel to Debug.
19+
**Additional info**
20+
If the issue is with a specific endpoint please provide:
21+
response.RequestBody:
22+
If possible enable the `options.Rest.OutputOriginalData` client options and provide:
23+
response.OriginalData:
24+
25+
If available provide related logging:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GET
2+
/api/v3/key
3+
true
4+
{
5+
"plan": "Other",
6+
"rate_limit_request_per_minute": 1000,
7+
"monthly_call_credit": 1000000,
8+
"current_total_monthly_calls": 104,
9+
"current_remaining_monthly_calls": 999896
10+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
GET
2+
/api/v3/coins/categories/list
3+
false
4+
[
5+
{
6+
"category_id": "aave-tokens",
7+
"name": "Aave Tokens"
8+
},
9+
{
10+
"category_id": "aaccount-abstraction",
11+
"name": "Account Abstraction"
12+
}
13+
]

0 commit comments

Comments
 (0)