Skip to content

Commit d6c1240

Browse files
committed
Service audit: update statuses, fix Anyone Protocol, add graveyard
- Add discontinued services graveyard section to README to prevent re-adding dead projects - Update YAML statuses: Wipter/Bytebenefit→dead, GagaNode/BlockMesh→dropped, Dawn→active - Fix Anyone Protocol YAML: correct Docker image, anonrc-based config, proper referral block - Update generate_docs.py to filter dropped/shady statuses from README tables - Regenerate all service guide pages and README tables
1 parent be890a6 commit d6c1240

15 files changed

Lines changed: 46 additions & 32 deletions

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,10 @@ These services have no Docker image. CashPilot lists them in the catalog with si
100100

101101
| Service | Residential IP | VPS IP | Devices / Acct | Devices / IP | Payout | Status |
102102
|---------|:-:|:-:|:-:|:-:|--------|--------|
103-
| [BlockMesh (Perceptron Network)](https://blockmesh.xyz) ||| Unlimited | 1 | Crypto (BMESH) | Shady |
104-
| [Bytebenefit](https://bytebenefit.com) ||| Unlimited | 1 | PayPal | Active |
105103
| [Bytelixir](https://bytelixir.com/r/OYEIRE0VSZBZ) ||| Unlimited | 1 | Crypto | Active |
104+
| [Dawn Internet](https://dawninternet.com/?code=2QLQV97F) ||| Unlimited | 1 | Crypto (DAWN) | Active |
106105
| [Deeper Network](https://deeper.network) ||| Unlimited | 1 | Crypto (DPR) | Active |
107106
| [Ebesucher](https://www.ebesucher.com/?ref=geiserx) ||| Unlimited | 1 | PayPal | Active |
108-
| [GagaNode](https://dashboard.gaganode.com/register) ||| Unlimited | 1 | Crypto, PayPal | Shady |
109107
| [Gradient Network](https://app.gradient.network/signup?referralCode=YSKMY7) ||| Unlimited | 1 | Crypto (GRADIENT) | Active |
110108
| [Grass](https://app.grass.io/register?referralCode=kn8FNEPnUr2tMqE) ||| Unlimited | 1 | Crypto (GRASS) | Active |
111109
| [Helium](https://helium.com) ||| Unlimited | 1 | Crypto (HNT) | Active |
@@ -313,6 +311,26 @@ Contributions are welcome. To add a new service:
313311

314312
For bug reports and feature requests, open an issue on GitHub.
315313

314+
## Discontinued / Broken Services
315+
316+
Services that were evaluated but are no longer listed in the catalog due to being dead, broken, or untrustworthy. Kept here for reference so they are not re-added.
317+
318+
| Service | Status | Reason | Last checked |
319+
|---------|--------|--------|:------------:|
320+
| SpeedShare | Dead | Project confirmed dead in Discord | Mar 2026 |
321+
| Peer2Profit | Dead | Domain unreachable | Mar 2026 |
322+
| PacketShare | Dead | Signup process broken, no progress | Mar 2026 |
323+
| earn.cc | Broken | Server error on signup | Mar 2026 |
324+
| WizardGain | Broken | Under maintenance indefinitely | Mar 2026 |
325+
| Koii Network | Broken | Website says paused | Mar 2026 |
326+
| Network3 | Broken | No SSL, no updates in months | Mar 2026 |
327+
| GagaNode | Shady | Poorly made website, untrustworthy | Mar 2026 |
328+
| BlockMesh (Perceptron) | Dropped | Rebranded, requires browser dev mode, shady | Mar 2026 |
329+
| Bytebenefit | Dead | Domain sold/parked on marketplace | Mar 2026 |
330+
| Wipter | Dead | Domain resolves to DNS sinkhole, infrastructure gone | Mar 2026 |
331+
| Filecoin | Not viable | Enterprise-only (10 TiB min, datacenter infrastructure required) | Mar 2026 |
332+
| AntGain | Dead | Telegram channel unavailable | Mar 2026 |
333+
316334
## License
317335

318336
[GPL-3.0](LICENSE) -- Sergio Fernandez, 2026

docs/guides/anyone-protocol.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
## Description
77

8-
Anyone Protocol (formerly ATOR) is a decentralized onion-routing privacy network. Node operators run relay nodes and earn ANYONE tokens for bandwidth contributed. Think "incentivized Tor." Official Docker images available for amd64 and arm64 including Raspberry Pi.
8+
Anyone Protocol (formerly ATOR) is a decentralized onion-routing privacy network. Node operators run relay nodes and earn ANYONE tokens for bandwidth contributed. Think "incentivized Tor." Official Docker images available for amd64 and arm64 including Raspberry Pi. Configuration is file-based via an anonrc file mounted into the container (Nickname, ContactInfo, ORPort, etc.).
99

1010
## Earning Estimates
1111

@@ -45,14 +45,12 @@ In the CashPilot web UI, find **Anyone Protocol** in the service catalog and cli
4545

4646
## Docker Configuration
4747

48-
- **Image:** `ghcr.io/anyone-protocol/ator-protocol-relay`
48+
- **Image:** `ghcr.io/anyone-protocol/ator-protocol`
4949
- **Platforms:** linux/amd64, linux/arm64
5050

5151
### Environment Variables
5252

53-
| Variable | Label | Required | Secret | Description |
54-
|----------|-------|:--------:|:------:|-------------|
55-
| `ANYONE_OPERATOR_ADDRESS` | Operator Wallet Address | Yes | No | Your wallet address for receiving ANYONE token rewards |
53+
No environment variables required.
5654

5755
### Manual Docker Run
5856

@@ -61,8 +59,10 @@ If running outside CashPilot:
6159
```bash
6260
docker run -d \
6361
--name cashpilot-anyone-protocol \
64-
-e ANYONE_OPERATOR_ADDRESS="<Operator Wallet Address>" \
65-
ghcr.io/anyone-protocol/ator-protocol-relay
62+
-p 9001:9001 \
63+
-v anon-data:/var/lib/anon \
64+
-v anon-config:/etc/anon \
65+
ghcr.io/anyone-protocol/ator-protocol
6666
```
6767

6868
## Referral Program

docs/guides/blockmesh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BlockMesh (Perceptron Network)
22

3-
> **Category:** DePIN | **Status:** Shady
3+
> **Category:** DePIN | **Status:** Dropped
44
> **Website:** [https://blockmesh.xyz](https://blockmesh.xyz)
55
66
## Description

docs/guides/bytebenefit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bytebenefit
22

3-
> **Category:** Bandwidth Sharing | **Status:** Active
3+
> **Category:** Bandwidth Sharing | **Status:** Dead
44
> **Website:** [https://bytebenefit.com](https://bytebenefit.com)
55
66
## Description

docs/guides/dawn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dawn Internet
22

3-
> **Category:** DePIN | **Status:** Broken
3+
> **Category:** DePIN | **Status:** Active
44
> **Website:** [https://dawninternet.com](https://dawninternet.com)
55
66
## Description

docs/guides/gaganode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GagaNode
22

3-
> **Category:** DePIN | **Status:** Shady
3+
> **Category:** DePIN | **Status:** Dropped
44
> **Website:** [https://www.gaganode.com](https://www.gaganode.com)
55
66
## Description

docs/guides/mysterium.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ docker run -d \
6363
--cap-add NET_ADMIN \
6464
-p 4449:4449 \
6565
-v mysterium-data:/var/lib/mysterium-node \
66-
mysteriumnetwork/myst service --agreed-terms-and-conditions
66+
mysteriumnetwork/myst --ui.address=0.0.0.0 --tequilapi.address=0.0.0.0 service --agreed-terms-and-conditions
6767
```
6868

6969
## Referral Program

docs/guides/wipter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Wipter
22

3-
> **Category:** DePIN | **Status:** Broken
3+
> **Category:** DePIN | **Status:** Dead
44
> **Website:** [https://wipter.com](https://wipter.com)
55
66
## Description

scripts/generate_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def generate_services_table(services: list[dict]) -> str:
176176

177177
for svc in services:
178178
status = svc.get("status", "active")
179-
if status in ("dead", "broken"):
179+
if status in ("dead", "broken", "dropped", "shady"):
180180
continue
181181
cat = svc.get("category", "bandwidth")
182182
docker_img = svc.get("docker", {}).get("image", "")

services/bandwidth/bytebenefit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Bytebenefit
22
slug: bytebenefit
33
category: bandwidth
4-
status: active
4+
status: dead
55
website: https://bytebenefit.com
66
description: >
77
Bytebenefit is a bandwidth-sharing service that pays through PayPal and Stripe.

0 commit comments

Comments
 (0)