forked from jordanlambrecht/tracker-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdigitalcore.ts
More file actions
114 lines (104 loc) · 5.18 KB
/
Copy pathdigitalcore.ts
File metadata and controls
114 lines (104 loc) · 5.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// src/data/trackers/digitalcore.ts
import type { TrackerRegistryEntry } from "@/data/tracker-registry"
export const digitalcore: TrackerRegistryEntry = {
// ── Identity ────────────────────────────────────────────────────────
slug: "digitalcore",
name: "DigitalCore",
abbreviation: "DC",
url: "https://digitalcore.club",
description:
"Scene-oriented 0day/general tracker with 1.5M+ torrents. Movies, TV, music, apps, games, ebooks.",
// ── Platform & API ──────────────────────────────────────────────────
platform: "digitalcore",
apiPath: "/api/v1/status",
// ── Content ─────────────────────────────────────────────────────────
specialty: "0day / General",
contentCategories: ["Movies", "TV", "Music", "Games", "Apps", "Books"],
language: "English",
// ── Visual ──────────────────────────────────────────────────────────
color: "#ffffff",
logo: "/tracker-logos/digitalcore_logo.png",
// ── External Links ──────────────────────────────────────────────────
trackerHubSlug: "",
statusPageUrl: "https://status.digitalcore.club/status/digitalcore",
// ── Community ───────────────────────────────────────────────────────
userClasses: [
{ name: "Rogue", requirements: "Starting class" },
{
name: "Sentinel",
requirements:
"Age ≥ 14 days, upload ≥ 50 GiB, ratio ≥ 1.05. Requests, bonus system, moderated uploads",
},
{
name: "Viceroy",
requirements:
"Age ≥ 105 days, upload ≥ 300 GiB, ratio ≥ 1.10. Top lists, extended stats, IP logging cleared",
},
{
name: "Sentry",
requirements:
"Age ≥ 210 days, upload ≥ 1.2 TiB, ratio ≥ 1.10. 3 request slots, 2 invites, Sentry+ forums",
},
{
name: "Guardian",
requirements:
"Age ≥ 500 days, upload ≥ 5 TiB, ratio ≥ 20.0. 5 extra invites, 6 extra request slots, unmoderated uploads",
},
{
name: "Vanguard",
requirements:
"Age ≥ 730 days, upload ≥ 20 TiB, ratio ≥ 20.0. 10 extra invites, 10 extra request slots",
},
{ name: "Uploader", requirements: "Staff-granted for high-volume uploaders" },
{ name: "Titan", requirements: "Staff-granted — highest community honor" },
{ name: "VIP", requirements: "Staff-granted for significant contributions or donation" },
],
releaseGroups: [],
bannedGroups: [],
notableMembers: [],
// ── Rules ───────────────────────────────────────────────────────────
rules: {
minimumRatio: 0.5,
seedTimeHours: 120,
loginIntervalDays: 90,
fullRulesMarkdown: [
"## Ratio",
"",
"- Minimum ratio: 0.5",
"- Below 0.5 → 5 days to recover (ratio watch), then download privileges revoked",
"- Leech bonus system: every 10 GB actively seeded = 1% download discount, up to 100% (site-wide freeleech at 1 TiB seeded)",
"- Inverse scarcity bonus: torrents with fewer seeders give higher bonus",
"- 24-hour freeleech on all new uploads",
"- Large torrents may also be freeleech",
"",
"## Hit & Run",
"",
"- A download is any torrent you have started to download 10% or more",
"- Seed for 5 days or to 1:1 ratio, whichever comes first",
"- If no announce for 1 hour, it shows as a Hit & Run",
"- 10 day grace period to fix it before it becomes permanent",
"- Permanent HnRs can be removed with bonus points, upload credit, or donation",
"- 5 active HnRs triggers an account warning",
"- Continued HnRs result in a download ban",
"",
"## Account Inactivity",
"",
"- Must remain active — inactive accounts are disabled",
"",
"## General",
"",
"- One account per person per lifetime",
"- Torrent files are unique to you — do not share or use with debrid services",
"- Cross-seeding is allowed",
"- VPNs are allowed (bind to torrent client only recommended)",
"- No buying/selling invites",
],
},
// ── Status ──────────────────────────────────────────────────────────
warning: false,
warningNote: "",
// ── Flags ───────────────────────────────────────────────────────────
draft: false,
supportsTransitPapers: false,
profileUrlPattern: "",
}