Skip to content

Commit 0c5b920

Browse files
committed
Added configs and helper classes
1 parent 04fa5dc commit 0c5b920

Some content is hidden

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

53 files changed

+35411
-0
lines changed

‎config/.DS_Store‎

6 KB
Binary file not shown.

‎config/best1050.txt‎

Lines changed: 1049 additions & 0 deletions
Large diffs are not rendered by default.

‎config/credentials.csv‎

Lines changed: 1001 additions & 0 deletions
Large diffs are not rendered by default.

‎config/hard/.DS_Store‎

6 KB
Binary file not shown.

‎config/hard/coincap_config.json‎

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"token": "your_api_token_here",
3+
"host": "https://api.coincap.io/v2",
4+
"description": "CoinCap provides real-time pricing and market activity data through REST endpoints.",
5+
"correct_endpoints": [
6+
"/assets",
7+
"/assets/{id}",
8+
"/assets/{id}/history",
9+
"/assets/{id}/markets",
10+
"/rates",
11+
"/rates/{id}",
12+
"/exchanges",
13+
"/exchanges/{id}",
14+
"/markets",
15+
"/candles"
16+
],
17+
"query_params": {
18+
"/assets": [
19+
"ids",
20+
"search",
21+
"limit",
22+
"offset",
23+
"sort"
24+
],
25+
"/assets/{id}/history": [
26+
"interval",
27+
"start",
28+
"end"
29+
],
30+
"/assets/{id}/markets": [
31+
"limit",
32+
"offset",
33+
"quote"
34+
],
35+
"/rates": [
36+
"limit",
37+
"offset"
38+
],
39+
"/exchanges": [
40+
"limit",
41+
"offset",
42+
"search"
43+
],
44+
"/markets": [
45+
"exchangeId",
46+
"baseSymbol",
47+
"quoteSymbol",
48+
"baseId",
49+
"quoteId",
50+
"assetSymbol",
51+
"limit",
52+
"offset",
53+
"sort"
54+
],
55+
"/candles": [
56+
"exchange",
57+
"interval",
58+
"baseId",
59+
"quoteId",
60+
"start",
61+
"end",
62+
"limit"
63+
]
64+
}
65+
}

‎config/hard/crapi_config.json‎

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"name": "crapi",
3+
"token": "your_api_token_here",
4+
"password_file": "config/best1050.txt",
5+
"csv_file": "config/credentials.csv",
6+
"host": "http://localhost:8888",
7+
"description": "No description provided.",
8+
"correct_endpoints": [
9+
"/identity/api/auth/signup",
10+
"/identity/api/auth/login",
11+
"/identity/api/auth/forget-password",
12+
"/identity/api/auth/v3/check-otp",
13+
"/identity/api/auth/v2/check-otp",
14+
"/identity/api/auth/v4.0/user/login-with-token",
15+
"/identity/api/auth/v2.7/user/login-with-token",
16+
"/identity/api/v2/user/reset-password",
17+
"/identity/api/v2/user/change-email",
18+
"/identity/api/v2/user/verify-email-token",
19+
"/identity/api/v2/user/dashboard",
20+
"/identity/api/v2/user/pictures",
21+
"/identity/api/v2/user/videos",
22+
"/identity/api/v2/user/videos/{id}",
23+
"/identity/api/v2/user/videos/convert_video",
24+
"/identity/api/v2/admin/videos/{id}",
25+
"/identity/api/v2/vehicle/vehicles",
26+
"/identity/api/v2/vehicle/add_vehicle",
27+
"/identity/api/v2/vehicle/{id}/location",
28+
"/identity/api/v2/vehicle/resend_email",
29+
"/community/api/v2/community/posts/{id}",
30+
"/community/api/v2/community/posts",
31+
"/community/api/v2/community/posts/{id}/comment",
32+
"/community/api/v2/community/posts/recent",
33+
"/community/api/v2/coupon/new-coupon",
34+
"/community/api/v2/coupon/validate-coupon",
35+
"/workshop/api/shop/products",
36+
"/workshop/api/shop/orders",
37+
"/workshop/api/shop/orders/{id}",
38+
"/workshop/api/shop/orders/all",
39+
"/workshop/api/shop/orders/return_order",
40+
"/workshop/api/shop/apply_coupon",
41+
"/workshop/api/shop/return_qr_code",
42+
"/workshop/api/management/users/all",
43+
"/workshop/api/mechanic/",
44+
"/workshop/api/merchant/contact_mechanic",
45+
"/workshop/api/mechanic/receive_report",
46+
"/workshop/api/mechanic/mechanic_report",
47+
"/workshop/api/mechanic/service_requests",
48+
"/workshop/api/mechanic/signup"
49+
],
50+
"query_params": {
51+
"/identity/api/v2/user/videos/convert_video": [
52+
"video_id"
53+
],
54+
"/community/api/v2/community/posts/recent": [
55+
"limit",
56+
"offset"
57+
],
58+
"/workshop/api/shop/orders/all": [
59+
"limit",
60+
"offset"
61+
],
62+
"/workshop/api/shop/orders/return_order": [
63+
"order_id"
64+
],
65+
"/workshop/api/management/users/all": [
66+
"limit",
67+
"offset"
68+
],
69+
"/workshop/api/mechanic/receive_report": [
70+
"mechanic_code",
71+
"problem_details",
72+
"vin"
73+
],
74+
"/workshop/api/mechanic/mechanic_report": [
75+
"report_id"
76+
],
77+
"/workshop/api/mechanic/service_requests": [
78+
"limit",
79+
"offset"
80+
]
81+
}
82+
}

0 commit comments

Comments
 (0)