Skip to content

Release/4.0.0 #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
9 changes: 7 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,10 @@ What endpoints and subscriptions are called.
**Expected behavior**
A clear and concise description of what you expected to happen.

**Debug logging**
Add debug logging related to the issue. Enable Debug logging in the client options by settings LogLevel to Debug.
**Additional info**
If the issue is with a specific endpoint please provide:
response.RequestBody:
If possible enable the `options.Rest.OutputOriginalData` client options and provide:
response.OriginalData:

If available provide related logging:
10 changes: 10 additions & 0 deletions CoinGecko.Net.UnitTests/Endpoints/GetApiUsage.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
GET
/api/v3/key
true
{
"plan": "Other",
"rate_limit_request_per_minute": 1000,
"monthly_call_credit": 1000000,
"current_total_monthly_calls": 104,
"current_remaining_monthly_calls": 999896
}
13 changes: 13 additions & 0 deletions CoinGecko.Net.UnitTests/Endpoints/GetAssetCategories.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
GET
/api/v3/coins/categories/list
false
[
{
"category_id": "aave-tokens",
"name": "Aave Tokens"
},
{
"category_id": "aaccount-abstraction",
"name": "Account Abstraction"
}
]
Loading