Automated mining scripts for TheJayNetwork (JAY token).
20 wallets, pool-safe, with browser
- Uses CloakBrowser for token fetching
- Staggered connection (2s delay between wallets)
- Rate limit safe: 120 shares/min
- Auto wallet generation (BIP44 Cosmos)
python3 jay_exploit_v3.py [num_wallets]20 wallets, pure Python (no browser)
- Uses
requestsinstead of browser - Lighter, faster startup
- May fail if token API requires browser fingerprint
python3 jay_exploit_v3_no_browser.py [num_wallets]100 wallets batch
- High-volume mining
- Batch token fetching
- Higher ban risk
python3 jay_exploit_100.pyFresh wallets daemon
- Continuous mining with fresh wallets
- Auto-rotation on ban
- Long-running daemon mode
python3 jay_mining_daemon.py# Clone repo
git clone https://github.com/sickagents/jay-mining.git
cd jay-mining
# Install dependencies
pip install -r requirements.txt
# For browser-based scripts, install Playwright
playwright install chromium- Python 3.8+
- Dependencies:
websockets,bip32,coincurve,mnemonic,bech32,requests - Optional:
cloakbrowser,playwright(for browser-based scripts)
Scripts auto-generate wallets in ~/.hermes/credentials/jay_wallets/
Logs saved to ~/.hermes/logs/jay_mining/
EXPLOIT_THREADS = 20 # Threads per wallet
SHARE_PROBABILITY = 0.3 # 30% chance submit share/sec
TARGET_WALLETS = 20 # Max concurrent wallets
CONNECT_DELAY = 2.0 # Delay between connectionsOnly run ONE script at a time
Running multiple scripts simultaneously will trigger IP 403 ban.
Rate limit: 120 shares/min per IP.
- Pool WS:
wss://api-pool.winnode.xyz - Site:
https://mining.thejaynetwork.com - Chain:
thejaynetwork - Wallet prefix:
yjay
Last tested: May 2026
Previous earnings: ~889 JAY (before wallet bans)
Educational purposes only. Use at your own risk.
Mining pool may ban wallets/IPs for suspicious activity.