Real-time target wallet scan & HEXK reward system - Provide computing power through free participation and earn HEXK tokens
Real-time P2P wallet scan network and HEXK token reward system
HEXK-Pool is a P2P network program that performs real-time computation and scanning of target wallet addresses. HEXK-Pool is a P2P reward pool for Bitcoin and Ethereum wallet-key scanning. Participants provide computing power and receive HEXK tokens as rewards.
Distributed Architecture & Key Technologies - Designed for Large-scale Distributed Computation and Key Verification
CPU/GPU Workers - Key Generation and Search Engine (10^9 keys/sec/device)
Bloom Filter DB - Real-time Scanning of 100M+ Addresses, Balance Checker APIs
Bootstrap Nodes - Work Distribution Queue, Result Aggregation, Duplicate Prevention Scheduler
HEXK Smart Contract - Contribution Tracking, Reward Distribution, Discovery Wallet Escrow
libp2p-based Decentralized P2P Network - DHT Peer Discovery, Gossipsub Propagation
Real-time Target Address Synchronization - Merkle Tree Delta Synchronization, Incremental Updates
HEXK-Pool Core Technologies Implementation - Bloom Filter, gRPC, Work Distribution
class BloomFilter { std::vector<uint64_t> bits_; size_t size_; uint32_t num_hashes_ = 7; // 0.001% FPR public: void add(const uint8_t* addr) { for (uint32_t i = 0; i < num_hashes_; i++) { uint64_t pos = murmur_hash(addr, 20, i); bits_[pos / 64] |= (1ULL << (pos % 64)); } } bool contains(const uint8_t* addr) const { for (uint32_t i = 0; i < num_hashes_; i++) { uint64_t pos = murmur_hash(addr, 20, i); if (!(bits_[pos / 64] & (1ULL << (pos % 64)))) return false; } return true; } };
Bloom Filter implementation that indexes 1 billion addresses in 3GB RAM. Maintains False Positive Rate of 0.001%.
class WorkDistributor { sw::redis::Redis redis_; std::mutex mutex_; public: WorkAssignment assign_work(const std::string& scanner_id) { auto shard = find_free_shard(); // Redis distributed lock redis_.hset("shard_assignments", std::to_string(shard), scanner_id); redis_.expire("shard:" + std::to_string(shard), 600); return WorkAssignment{ .shard_index = shard, .start_offset = (uint64_t)shard << 240, .end_offset = ((uint64_t)shard + 1) << 240 }; } };
System that divides 2^256 key space into 65,536 shards to distribute work without duplication.
HEXK-Pool real-time performance metrics and reward system
CPU-based keys scanning speed per second
1 HEXK per 5 billion target scans
False Positive Rate
2^256 key space division
Step-by-step guide for HEXK-Pool free participation
Public pool launch scheduled for February 2026. Windows 10+ or macOS supported.
Coming Soon - Public Pool Launch Feb 2026
Set the Solana wallet address to receive HEXK token rewards in config.json.
"scanner_pubkey": "YOUR_SOLANA_ADDRESS"
Automatically receive 1 HEXK token per 5 billion target address scans.
Participate for free, provide computing power and earn HEXK tokens. 1 HEXK reward per 5 billion target wallet address scans | Public pool launch scheduled for February 2026