Skip to content

ChainWatch is an intelligent blockchain transaction analysis and monitoring tool that uses artificial intelligence and machine learning to identify suspicious patterns and behaviors. This tool supports multiple blockchain networks and provides advanced capabilities for transaction analysis.

License

Notifications You must be signed in to change notification settings

v74all/Chainwatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChainWatch Analyzer 1.5 beta

معرفی

چین‌واچ یک ابزار تحلیل و نظارت هوشمند بر تراکنش‌های بلاکچین است که با استفاده از هوش مصنوعی و یادگیری ماشین، الگوها و رفتارهای مشکوک را شناسایی می‌کند. این ابزار از چندین شبکه بلاکچین پشتیبانی می‌کند و قابلیت‌های پیشرفته‌ای برای تحلیل تراکنش‌ها ارائه می‌دهد.

ویژگی‌های اصلی

  • تحلیل چند زنجیره‌ای تراکنش‌ها
  • شناسایی الگوهای مشکوک
  • امتیازدهی ریسک
  • تحلیل توپولوژی شبکه
  • تشخیص ناهنجاری‌ها
  • شناسایی مسیرهای تبادل
  • پشتیبانی از زبان فارسی و انگلیسی

نصب و راه‌اندازی


Introduction

ChainWatch is an intelligent blockchain transaction analysis and monitoring tool that uses artificial intelligence and machine learning to identify suspicious patterns and behaviors. This tool supports multiple blockchain networks and provides advanced capabilities for transaction analysis.

Key Features

  • Multi-chain transaction analysis
  • Suspicious pattern detection
  • Risk scoring
  • Network topology analysis
  • Anomaly detection
  • Exchange path identification
  • Bilingual support (English/Persian)

Installation

git clone https://github.com/v74all/Chainwatch.git
cd chainwatch
pip install -r requirements.txt

پیکربندی

برای استفاده از برنامه، فایل .env را در مسیر اصلی پروژه ایجاد کرده و کلیدهای API مورد نیاز را در آن قرار دهید:

Configuration

Create a .env file in the project root and add your API keys:

TRON_API_KEY_1=your_tron_api_key_1
TRON_API_KEY_2=your_tron_api_key_2
ETHERSCAN_API_KEY=your_etherscan_api_key
BLOCKCYPHER_TOKEN=your_blockcypher_token
# ... other API keys

نحوه استفاده

برنامه را می‌توانید از طریق خط فرمان با گزینه‌های مختلف اجرا کنید:

Usage

You can run the program through command line with various options:

# Basic Analysis / تحلیل پایه
python cli.py -a 0x123... --format json --output results.json

# Deep Analysis with Risk Assessment / تحلیل عمیق با ارزیابی ریسک
python cli.py -a 0x123... -b ethereum --mode deep --risk-threshold 0.8 --verbose

# Multi-Address Analysis / تحلیل چند آدرس
python cli.py -a 0x123... 0x456... Tz1... --batch-size 200 --depth 4

# Generate HTML Report / تولید گزارش HTML
python cli.py -a 0x123... --format html --output report.html --lang fa

# System Health Check / بررسی سلامت سیستم
python cli.py --health-check

پارامترهای خط فرمان

Command Line Parameters

Required Arguments:
  -a, --addresses        One or more wallet addresses to analyze

Analysis Configuration:
  -b, --blockchain      Specific blockchain to analyze (ethereum/bsc/tron/etc)
  -d, --depth           Analysis depth (default: 3)
  --mode               Analysis mode (quick/deep)
  --risk-threshold     Risk threshold (0.0-1.0)
  --batch-size         Batch size for processing

Output Options:
  -o, --output         Output file path
  -f, --format         Output format (json/csv/html)

Additional Options:
  --verbose           Enable detailed output
  --lang              Interface language (en/fa)
  --no-progress       Disable progress bars
  --debug             Enable debug mode
  --health-check      Run system health check

بلاکچین‌های پشتیبانی شده

Supported Blockchains

  • Ethereum (ETH)
  • Binance Smart Chain (BSC)
  • Tron (TRX)
  • Solana (SOL)
  • Polygon (MATIC)
  • Avalanche (AVAX)
  • Cardano (ADA)
  • Fantom (FTM)
  • Arbitrum (ARB)
  • Optimism (OP)
  • And many more...

نمونه خروجی

برنامه خروجی تحلیل را در قالب‌های مختلف ارائه می‌دهد:

Sample Output

The program provides analysis output in various formats:

{
  "address": "0x123...",
  "blockchain": "ethereum",
  "risk_score": 75.5,
  "fraud_probability": 0.85,
  "suspicious": true,
  "analysis_details": {
    "risk_factors": [
      "High-value transactions: 15%",
      "Rapid transactions: 25%",
      "Suspicious connections: 3"
    ],
    "statistics": {
      "total_transactions": 150,
      "total_volume": 1250.45,
      "unique_counterparties": 45
    }
  }
}

آموزش الگوریتم یادگیری ماشین

برای بهبود دقت تشخیص تراکنش‌های مشکوک، می‌توانید الگوریتم یادگیری ماشین را با داده‌های خود آموزش دهید:

نیازمندی‌های داده آموزشی

  • فایل CSV حاوی تراکنش‌های برچسب‌گذاری شده
  • هر تراکنش باید شامل: آدرس کیف پول، زمان، مقدار و برچسب (مشکوک/عادی) باشد
  • حداقل 1000 تراکنش برای آموزش مؤثر توصیه می‌شود

مراحل آموزش مدل

  1. آماده‌سازی داده‌ها:

    • داده‌ها را در فرمت CSV ذخیره کنید
    • برچسب‌های مشکوک را با 1 و عادی را با 0 مشخص کنید
    • داده‌ها را به دو بخش آموزش و آزمایش تقسیم کنید
  2. تنظیم پیکربندی:

    • فایل config/training_config.yaml را ویرایش کنید
    • پارامترهای مدل را تنظیم کنید
    • نوع مدل را انتخاب کنید
  3. اجرای آموزش:

    python scripts/train_model.py --data data/transactions.csv --output models/
  4. ارزیابی مدل:

    • گزارش عملکرد را بررسی کنید
    • مدل را در صورت نیاز بهینه‌سازی کنید

Training the Machine Learning Algorithm

To improve the accuracy of suspicious transaction detection, you can train the ML algorithm with your own data:

Training Data Requirements

  • CSV file containing labeled transactions
  • Each transaction must include: wallet address, timestamp, amount, and label (suspicious/normal)
  • Minimum of 1000 transactions recommended for effective training

Training Process

  1. Data Preparation:

    • Save data in CSV format
    • Mark suspicious transactions with 1, normal with 0
    • Split data into training and test sets
  2. Configuration Setup:

    • Edit config/training_config.yaml
    • Configure model parameters
    • Select model type
  3. Run Training:

    python scripts/train_model.py --data data/transactions.csv --output models/
  4. Model Evaluation:

    • Review performance report
    • Optimize model if needed

About

ChainWatch is an intelligent blockchain transaction analysis and monitoring tool that uses artificial intelligence and machine learning to identify suspicious patterns and behaviors. This tool supports multiple blockchain networks and provides advanced capabilities for transaction analysis.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages