# Privacy-Safe Data Upload Guide for Spikenaut v1 ## ✅ Safe to Upload (Already Sanitized) ### Current Dataset (Privacy-Safe) - **`spikenaut_v1_telemetry.jsonl`** - Mock telemetry data (no real assets) - **FPGA Parameters** - Hex weight matrices (no personal data) - **Vivado Reports** - Technical analysis (hardware metrics only) ### Additional Safe Data You Can Upload #### 1. **Mining Performance Metrics** (Sanitized) ```json {"timestamp": "2026-03-11T06:32:01Z", "event_type": "mining_telemetry", "gpu_id": 0, "hashrate_ths": 145.2, "power_usage": 248.2, "temperature": 72.8, "efficiency_j_th": 1.71, "pool": "dynex.herominers.com", "wallet_hash": "REDACTED_FOR_PRIVACY"} ``` #### 2. **Hardware Benchmark Data** - GPU hashrate performance charts - Power efficiency measurements - Thermal performance curves - Memory utilization patterns #### 3. **Algorithm Performance** - SNN processing benchmarks - Market data latency metrics - Trading execution timing - Neural bridge performance #### 4. **System Logs** (Sanitized) - Application startup logs - Performance monitoring data - Error logs (without IPs/keys) - Resource utilization history ## ❌ Do NOT Upload (Contains Sensitive Data) ### Mining Wallet Information - **Wallet Address**: `XwoWspyERVE8TS7RupXXGR8hD8TLhqrbKjSGhdoL9k34JigydrxvEHETDgnM4X3qjsZrgfgojbnGEZRVepMAQYce28beJHsP9` - **Private Keys**: Any cryptographic keys - **Pool Credentials**: Authentication tokens - **API Keys**: Exchange or service keys ### System Identifiers - **IP Addresses**: Network locations - **Hostnames**: `ShipOfTheseus` - **User Paths**: `/home/raulmc/` - **Environment Variables**: With sensitive values ## 🔒 Sanitization Commands ### For Mining Logs ```bash # Redact wallet addresses sed -i 's/[A-Za-z0-9]\{95\}/REDACTED_FOR_PRIVACY/g' miner.log # Remove pool credentials sed -i 's/stratum+tcp:\/\/[^:]*:/stratum+tcp:\/\/REDACTED_POOL:/g' miner.log ``` ### For System Logs ```bash # Remove IP addresses sed -i 's/[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}/REDACTED_IP/g' logfile # Remove usernames sed -i 's/\/home\/[^\/]*\//\/home\/REDACTED_USER\//g' logfile ``` ## 🎯 Recommended Upload Strategy ### Phase 1: Core Dataset (Complete) - ✅ Telemetry data (mock) - ✅ FPGA parameters - ✅ Vivado reports ### Phase 2: Performance Data (Add if Available) - Mining hashrate benchmarks - GPU efficiency measurements - SNN processing metrics - Trading latency analysis ### Phase 3: Extended Research Data - Longer time series data - Multiple market condition samples - Hardware optimization results ## 📊 Privacy-Safe Data Structure All uploaded data should follow this pattern: ```json { "timestamp": "ISO_8601_timestamp", "event_type": "category", "technical_metrics": {...}, "performance_data": {...}, "privacy_note": "wallet_hash and personal identifiers redacted" } ``` This ensures your research contribution maintains privacy while providing maximum scientific value!