Files
aitbc/docs/guides/getting-started/1_intro.md
aitbc 19d415a235
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 3s
CLI Tests / test-cli (push) Failing after 3s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 2s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Successful in 2s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Deploy to Testnet / deploy-testnet (push) Successful in 1m12s
Documentation Validation / validate-docs (push) Failing after 8s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Integration Tests / test-service-integration (push) Successful in 2m6s
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 2s
Multi-Node Blockchain Health Monitoring / health-check (push) Failing after 4s
P2P Network Verification / p2p-verification (push) Successful in 4s
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 32s
Package Tests / Python package - aitbc-core (push) Successful in 14s
Package Tests / Python package - aitbc-crypto (push) Successful in 12s
Package Tests / Python package - aitbc-sdk (push) Successful in 9s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 8s
Package Tests / JavaScript package - aitbc-token (push) Successful in 17s
Python Tests / test-python (push) Successful in 15s
Security Scanning / security-scan (push) Successful in 27s
Node Failover Simulation / failover-test (push) Successful in 7s
Multi-Node Stress Testing / stress-test (push) Successful in 6s
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
feat: add SQLCipher database encryption support and consolidate agent documentation
- Add SQLCipher encryption for ait-mainnet database with configurable flag
- Add db_encryption_enabled and db_encryption_key_path config settings
- Implement encryption key loading and PRAGMA key setup via connection events
- Add shutdown_db function for proper database cleanup
- Export middleware classes in aitbc/__init__.py
- Fix import path in sync.py for settings
- Remove duplicate agent documentation from docs
2026-05-03 12:00:38 +02:00

4.5 KiB

What is AITBC?

AITBC is a comprehensive blockchain platform that combines AI-powered trading, advanced analytics, multi-chain support, and enterprise-grade security. The platform has evolved from its original AI agent focus to become a full-featured blockchain ecosystem supporting real-world trading, surveillance, and compliance requirements.

Platform Feature What it provides
Multi-Chain Blockchain Complete 7-layer architecture with chain isolation
AI-Powered Trading Machine learning trading algorithms and predictive analytics
Advanced Surveillance Real-time market monitoring with 88-94% accuracy
Exchange Integration Complete integration with major exchanges (Binance, Coinbase, Kraken)
Compliance Framework KYC/AML integration with 5 major compliance providers
Enterprise Security Multi-sig wallets, time-lock, and advanced protection

Key Components

Component Purpose
Multi-Chain Architecture 7-layer system with complete chain isolation (Wallet→Daemon→Coordinator→Blockchain→Consensus→Network→Explorer→User)
AI Trading Engine Machine learning-based trading with mean reversion and momentum strategies
AI Surveillance System Advanced pattern recognition and behavioral analysis
Exchange Infrastructure Real exchange integration with CCXT library
Compliance & Regulatory Automated KYC/AML and regulatory reporting (FINCEN, SEC, FINRA)
Production Deployment Complete production setup with encrypted keystores

Quick Start by Use Case

Traders../05_cli/README.md

# Start AI trading
aitbc ai-trading start --strategy mean_reversion
aitbc advanced-analytics dashboard
aitbc ai-surveillance start

# Exchange operations
aitbc exchange register --name "Binance" --api-key <key>
aitbc exchange create-pair AITBC/BTC
aitbc exchange start-trading --pair AITBC/BTC

Miners../04_miners/README.md

# Mining operations
aitbc miner start
aitbc miner status
aitbc wallet balance

Developers../05_cli/README.md

# Development and testing
aitbc test-cli run
aitbc simulate network
aitbc optimize performance

System Administrators../deployment/

# System management
aitbc-services status
aitbc deployment production
aitbc security-test run

Multi-Chain Architecture

The AITBC platform features a complete 7-layer multi-chain architecture:

  • Layer 1: Wallet Daemon (8003) - Multi-chain wallet management
  • Layer 2: Coordinator API (8001) - Transaction coordination
  • Layer 3: Blockchain Service (8007) - Transaction processing and consensus
  • Layer 4: Consensus Mechanism (8007) - PoA consensus with validation
  • Layer 5: Network Service (8008) - P2P block propagation
  • Layer 6: Explorer Service (8016) - Data aggregation and API
  • Layer 7: User Interface (8016) - Complete user experience

AI-Powered Features

AI Trading Engine (Phase 4.1 - COMPLETE)

  • Machine learning-based trading algorithms
  • Predictive analytics and price prediction
  • Portfolio optimization and risk management
  • Strategy backtesting with historical data

Advanced Analytics Platform (Phase 4.2 - COMPLETE)

  • Real-time analytics dashboard
  • Market data analysis and insights
  • Performance metrics and KPI tracking
  • Custom analytics APIs and reporting

AI-Powered Surveillance (Phase 4.3 - COMPLETE)

  • Machine learning surveillance with 92% accuracy
  • Behavioral analysis with 88% accuracy
  • Predictive risk assessment with 94% accuracy
  • Automated alert systems and market integrity protection

Chain-Specific Token System

AITBC implements complete chain isolation with chain-specific tokens:

  • AITBC-AIT-DEVNET: 100.5 tokens (devnet only)
  • AITBC-AIT-TESTNET: 0.0 tokens (testnet only)
  • AITBC-MAINNET: 0.0 tokens (mainnet only)

Tokens are chain-specific and non-transferable between chains, providing complete security and isolation.

Next Steps