Loading repository data…
Loading repository data…
JaMieUb1984 / repository
Python-based crypto wallet analysis tool with multi-threaded address and seed phrase checking (up to 50 threads). Supports Bitcoin, Ethereum, Solana, BNB Chain, Polygon, and EVM networks. Includes proxy rotation, portfolio aggregation, USD valuation, token scanning, and TXT/CSV/JSON export for auditing, research, and analytics.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
DeBank Fraud Bypass — Multi-Thread Address & Seed Phrase Scanner
Advanced multi-chain balance scanner that bypasses DeBank API fraud and IP bansusing rotating proxy pools. Check wallet addresses AND seed phrases without API keys —pure proxy-based scanning with multi-threaded execution across 10+ blockchains.
Features · Proxy Setup · Seed Checker · Getting Started · Configuration · Usage · FAQ
| Feature | Status |
|---|---|
| Address Balance Check | ✅ |
| Seed Phrase Checker | ✅ |
| Multi-Thread Mode (up to 50) | ✅ |
| DeBank Fraud Bypass | ✅ |
| Proxy Rotation Engine | ✅ |
| Auto-Proxy Validation | ✅ |
| Round-Robin / Random Rotation | ✅ |
| SOCKS5 + HTTP Proxy Support | ✅ |
| Feature | Status |
|---|---|
| Ethereum (ERC-20) | ✅ |
| Bitcoin (UTXO) | ✅ |
| Solana (SPL) | ✅ |
| BNB Chain (BEP-20) | ✅ |
| Polygon / Arbitrum / Base | ✅ |
| Avalanche / Optimism / Fantom | ✅ |
| All EVM-Compatible Chains | ✅ |
| High-Value Alert System | ✅ |
DeBank actively monitors and bans IP addresses that perform bulk wallet queries. When your IP is flagged, DeBank returns fraudulent data (zero balances, fake token counts) or blocks requests entirely — a technique known as "API fraud."
Crypto Checker bypasses DeBank fraud using proxy rotation:
The tool queries DeBank's API through rotating proxies, making it impossible for DeBank to correlate requests or flag your activity. Each wallet lookup appears as a unique, first-time visitor.
http://user:pass@192.168.1.1:8080
http://user:pass@192.168.1.2:8080
socks5://user:pass@192.168.1.3:1080
socks5://192.168.1.4:1080
http://192.168.1.5:3128
One proxy per line. Supported formats: http://, https://, socks5://. Authentication via user:pass@ prefix.
{
"proxies": {
"enabled": true,
"rotation_mode": "round-robin",
"proxy_list": [
"http://user:pass@192.168.1.1:8080",
"socks5://user:pass@192.168.1.2:1080",
"http://192.168.1.3:8080"
],
"proxy_file": "proxies.txt",
"validation_interval_sec": 300,
"timeout_sec": 15,
"max_retries": 3,
"fallback_to_direct": false
}
}
| Parameter | Type | Default | Description |
|---|---|---|---|
enabled | bool | true | Enable proxy rotation |
rotation_mode | string | "round-robin" | round-robin or random |
proxy_list | array | [] | Inline proxy list |
proxy_file | string | "proxies.txt" | Path to proxy file |
validation_interval_sec | int | 300 | Re-validate proxies every N seconds |
timeout_sec | int | 15 | Connection timeout per proxy |
max_retries | int | 3 | Retry count before marking proxy dead |
fallback_to_direct | bool | false | Use direct connection if all proxies fail |
Crypto Checker can verify seed phrases (mnemonic phrases) against blockchain balances — entirely through proxy rotation.
Prepare a file seeds.txt with one seed phrase per line:
abandon ability able about above absent absorb abstract absurd abuse access accident
zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo wrong
letter advice cage absurd amount doctor acoustic avoid letter advice cage above
Set the file path in config.json:
"seed_checker": {
"seed_file": "seeds.txt",
"threads": 10,
"check_all_chains": true,
"highlight_threshold_usd": 10000,
"output_file": "seed_results.txt"
}
Run Seed Phrase Check from the menu — the tool derives addresses from each seed phrase and checks balances across all chains using rotating proxies.
Results are saved to seed_results.txt with seed phrase, derived addresses, and balances. High-value wallets (above threshold) are marked with ⚠.
| Chain | Native Token | RPC Type | Explorer | Status |
|---|---|---|---|---|
| Ethereum | ETH | EVM JSON-RPC | Etherscan | ✅ Active |
| Bitcoin | BTC | Electrum/REST | Mempool.space | ✅ Active |
| Solana | SOL | JSON-RPC | Solscan | ✅ Active |
| BNB Chain | BNB | EVM JSON-RPC | BscScan | ✅ Active |
| Polygon | MATIC | EVM JSON-RPC | Polygonscan | ✅ Active |
| Arbitrum | ETH | EVM JSON-RPC | Arbiscan | ✅ Active |
| Avalanche | AVAX | EVM JSON-RPC | Snowtrace | ✅ Active |
| Optimism | ETH | EVM JSON-RPC | Optimistic Etherscan | ✅ Active |
| Base | ETH | EVM JSON-RPC | BaseScan | ✅ Active |
| Fantom | FTM | EVM JSON-RPC | FTMScan | ✅ Active |
Windows:
git clone https://github.com/JaMieUb1984/Crypto-Checker.git
cd Crypto-Checker
run.bat
Linux / macOS:
git clone https://github.com/JaMieUb1984/Crypto-Checker.git
cd Crypto-Checker
chmod +x run.sh
./run.sh
Manual:
pip install -r requirements.txt
python main.py
| Package | Version | Purpose |
|---|---|---|
| rich | ≥13.0.0 | Terminal UI, tables, progress bars |
| cryptography | ≥41.0.0 | Secure local data handling |
| web3 | ≥6.15.0 | EVM chain interaction |
| requests | ≥2.31.0 | HTTP client with proxy support |
| aiohttp | ≥3.9.0 | Async HTTP for batch queries |
| pysocks | ≥1.7.1 | SOCKS5 proxy support |
Full config.json example:
{
"proxies": {
"enabled": true,
"rotation_mode": "round-robin",
"proxy_list": [],
"proxy_file": "proxies.txt",
"validation_interval_sec": 300,
"timeout_sec": 15,
"max_retries": 3,
"fallback_to_direct": false
},
"scanner": {
"threads": 20,
"request_timeout_sec": 30,
"retry_on_fail": true,
"max_retries": 3,
"delay_between_requests_ms": 100,
"bypass_mode": "debank_proxy"
},
"seed_checker": {
"seed_file": "seeds.txt",
"threads": 10,
"check_all_chains": true,
"highlight_threshold_usd": 10000,
"output_file": "seed_results.txt"
},
"rpc_endpoints": {
"ethereum": "https://eth-mainnet.g.alchemy.com/v2/YOUR_KEY",
"bitcoin": "https://blockstream.info/api",
"solana": "https://api.mainnet-beta.solana.com",
"bsc": "https://bsc-dataseed.binance.org",
"polygon": "https://polygon-rpc.com",
"arbitrum": "https://arb1.arbitrum.io/rpc"
},
"export": {
"default_format": "txt",
"output_directory": "./results",
"include_usd_value": true
}
}
╔══════════════════════════════════════════════════════════════════════╗
║ CRYPTO CHECKER v2.2.0 ║
║ DeBank Bypass — Multi-Thread Address & Seed Scanner ║
╠══════════════════════════════════════════════════════════════════════╣
║ ║
║ ── Queries ────────────────────────────────────────────────────── ║
║ │ [1] 💰 Check Address Balance Single address lookup via proxy │ ║
║ │ [2] 📦 Batch Address Check Multiple addresses, multi-thread │ ║
║ │ [3] 🌱 Seed Phrase Check Check seed phrases from file │ ║
║ ║
║ ── Proxy ──────────────────────────────────────────────────────── ║
║ │ [4] 🔄 Proxy Manager Load, validate, rotate proxies │ ║
║ ║
║ ── Analytics ──────────────────────────────────────────────────── ║
║ │ [5] 📊 Portfolio Summary Aggregated results dashboard │ ║
║ │ [6] 📤 Export Results Save to TXT / CSV / JSON │ ║
║ ║
║ ── System ─────────────────────────────────────────────────────── ║
║ │ [7] ⛓️ Chain Configuration RPC endpoints & settings │ ║
║ │ [8] ⚙️ Settings Threads, timeouts, preferences │ ║
║ │ [0] 🚪 Exit Close application │ ║
║ ║
╠══════════════════════════════════════════════════════════════════════╣
║ Proxy: ● 42/47 alive │ Threads: 20 │ Mode: debank_proxy ║
╚══════════════════════════════════════════════════════════════════════╝
Select option [#]: 3
[12:00:01] Loading proxy pool... 47 proxies loaded from proxies.txt
[12:00:02] Validating proxies... 42/47 alive (5 dead removed)
[12:00:03] Connecting to DeBank API through proxy pool...
[12:00:03] Loading seed phrases from seeds.txt... 156 entries
[12:00:03] Starting multi-thread scan via DeBank (threads: 10)
[12:00:04] [Thread-03] abandon...about | ETH: 0.00 | BTC: 0.00 | SOL: 0.00 | Empty
[12:00:04] [Thread-07] zoo...wrong | ETH: 0.00 | Empty
[12:00:05] [Thread-01] letter...above| ETH: 245.12 ($857,920) | BTC: 3.41 ($228,470) | ⚠ HIGH VALUE
[12:00:05] [Thread-12] able...adult | ETH: 0.00 | BSC: 1,240 BNB ($744,000) | ⚠ HIGH VALUE
[12:00:06] DeBank proxy rotated: 192.168.1.5:8080 → 192.168.1.12:8080
[12:00:06] [Thread-05] acid...zero | ETH: 12.45 ($43,575) | Tokens: 8 | SOL: 89.2 ($13,380)
[12:00:07] [Thread-09] baby...done | ETH: 0.00 | Empty
[12:00:08] [Thread-02] cake...fish | ETH: 0.85 ($2,975) | MATIC: 4,200 ($2,940)
...
[12:03:47] Scan complete. 156/156 seeds checked via DeBank API.
[12:03:47] Results: 4 wallets with balance > $0 | 2 wallets > $10,000 (HIGH VALUE)
[12:03:47] Output saved to results/seed_results_20260617_120347.txt
Crypto-Checker/
├── main.py # Entry point and menu system
├── config.py # Configuration loader (JSON + defaults)
├── bot_actions.py # Core scanning & proxy management handlers
├── requirements.txt # P