every transfer leaves a trace.
genin402 measures how much of yours survives.
Solana is a public ledger. Every hop, every amount, every wallet interaction is visible forever. Genin402 is a privacy scoring engine — it takes a transfer configuration and tells you how well it's actually shielded from chain analysis tools.

Install genin402 and start measuring your privacy score in minutes.
pip install genin402from genin402 import PrivacyEngine, ShadowTransfer
engine = PrivacyEngine()
transfer = ShadowTransfer(
wallet_address="7xKX...AsU",
transfer_amount_sol=25.0,
hop_count=7,
mixer_pools_used=3,
decoy_tx_count=15,
payment_gate_active=1,
)
report = engine.analyze(transfer)
print(report.verdict) # JONIN
print(report.privacy_score) # 81.4
print(report.cloak_status) # darkcd ts && npm install && npm run build
node dist/cli.js analyze <wallet_address>
node dist/cli.js batch <w1> <w2> <w3>uvicorn genin402.server:app --reload
POST /analyze → ShadowReport
POST /analyze/batch → list[ShadowReport]
GET /health → { "status": "ok" }docker-compose up
# API → :8000
# UI → :3000git clone https://github.com/thegenin402privacy/Genin402-Privacy.git
cd Genin402-Privacy
pip install -e ".[dev]"
pytest tests/ -v # 106+ testsshadow ops — untraceable
high stealth — well-routed
decent coverage — exposure risk
basic obfuscation — trackable
minimal protection — mostly open
no shield — fully on-chain
ShadowTransfer (input)
│
├─ ShadowAnalyzer → stealth_score
├─ RouteAnalyzer → route_entropy
├─ ShieldAnalyzer → payment_shield
├─ StealthAgent → trace_resistance
└─ RouteAgent → shadow_depth
│
▼
PrivacyEngine → ShadowReport
│
verdict + privacy_score + cloak_statusstealth_score ██████░░░░ 0.25
route_entropy ██████░░░░ 0.25
payment_shield █████░░░░░ 0.20
trace_resistance █████░░░░░ 0.20
shadow_depth ███░░░░░░░ 0.10The 402 in the name isn't a status code. It's a payment gate protocol — a routing layer that sits between your intent and your execution.
Genin402 measures whether that gate is holding. Five metrics. Each scored 0–100. Weighted into a single privacy score. Know your shadow depth before you move.