Some checks failed
Documentation Validation / validate-docs (push) Has been cancelled
- Update README achievements section with multi-node sync details (gossip backend, PoA fixes, transaction sync) - Add Stage 29 completion in roadmap with comprehensive synchronization fixes - Document OpenClaw agent communication test success (transaction 0xdcf365...) - Update done.md with recent synchronization fixes and documentation updates - Update block heights from 26952 to 27201 across all documentation
146 lines
5.4 KiB
Markdown
146 lines
5.4 KiB
Markdown
# AITBC - Advanced Intelligence Training Blockchain Consortium
|
|
|
|
## Project Structure
|
|
|
|
This project has been organized for better maintainability. Here's the directory structure:
|
|
|
|
### 📁 Essential Root Files
|
|
- `LICENSE` - Project license
|
|
- `aitbc-cli` - Main CLI symlink
|
|
- `README.md` - This file
|
|
|
|
### 📁 Core Directories
|
|
- `aitbc/` - Core AITBC Python package
|
|
- `cli/` - Command-line interface implementation
|
|
- `contracts/` - Smart contracts
|
|
- `scripts/` - Automation and deployment scripts
|
|
- `services/` - Microservices
|
|
- `tests/` - Test suites
|
|
|
|
### 📁 Configuration
|
|
- `project-config/` - Project configuration files
|
|
- `pyproject.toml` - Python project configuration
|
|
- `requirements.txt` - Python dependencies
|
|
- `poetry.lock` - Dependency lock file
|
|
- `.gitignore` - Git ignore rules
|
|
- `.deployment_progress` - Deployment tracking
|
|
|
|
### 📁 Documentation
|
|
- `docs/` - Comprehensive documentation
|
|
- `README.md` - Main project documentation
|
|
- `SETUP.md` - Setup instructions
|
|
- `PYTHON_VERSION_STATUS.md` - Python compatibility
|
|
- `AITBC1_TEST_COMMANDS.md` - Testing commands
|
|
- `AITBC1_UPDATED_COMMANDS.md` - Updated commands
|
|
- `README_DOCUMENTATION.md` - Detailed documentation
|
|
|
|
### 📁 Development
|
|
- `dev/` - Development tools and examples
|
|
- `.windsurf/` - IDE configuration
|
|
- `packages/` - Package distributions
|
|
- `extensions/` - Browser extensions
|
|
- `plugins/` - System plugins
|
|
|
|
### 📁 Infrastructure
|
|
- `infra/` - Infrastructure as code
|
|
- `systemd/` - System service configurations
|
|
- `monitoring/` - Monitoring setup
|
|
|
|
### 📁 Applications
|
|
- `apps/` - Application components
|
|
- `services/` - Service implementations
|
|
- `website/` - Web interface
|
|
|
|
### 📁 AI & GPU
|
|
- `gpu_acceleration/` - GPU optimization
|
|
- `ai-ml/` - AI/ML components
|
|
|
|
### 📁 Security & Backup
|
|
- `security/` - Security reports and fixes
|
|
- `backup-config/` - Backup configurations
|
|
- `backups/` - Data backups
|
|
|
|
### 📁 Cache & Logs
|
|
- `venv/` - Python virtual environment
|
|
- `logs/` - Application logs
|
|
- `.mypy_cache/`, `.pytest_cache/`, `.ruff_cache/` - Tool caches
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Setup environment
|
|
cd /opt/aitbc
|
|
source venv/bin/activate
|
|
|
|
# Install dependencies
|
|
pip install -r requirements.txt
|
|
|
|
# Run CLI
|
|
./aitbc-cli --help
|
|
|
|
# Run training
|
|
./scripts/training/master_training_launcher.sh
|
|
|
|
# Cross-node communication training
|
|
./scripts/training/openclaw_cross_node_comm.sh
|
|
```
|
|
|
|
## Recent Achievements
|
|
|
|
### Multi-Node Blockchain Synchronization (April 10, 2026)
|
|
- **Gossip Backend Configuration**: Fixed both nodes to use broadcast backend with Redis
|
|
- aitbc: `gossip_backend=broadcast`, `gossip_broadcast_url=redis://localhost:6379`
|
|
- aitbc1: `gossip_backend=broadcast`, `gossip_broadcast_url=redis://10.1.223.40:6379`
|
|
- **PoA Consensus Enhancements**: Fixed busy-loop issue in poa.py when mempool is empty
|
|
- Added `propose_only_if_mempool_not_empty=true` configuration
|
|
- Modified `_propose_block` to return boolean indicating if a block was proposed
|
|
- **Transaction Synchronization**: Fixed transaction parsing in sync.py
|
|
- Updated `_append_block` to use correct field names (from/to instead of sender/recipient)
|
|
- **RPC Endpoint Enhancements**: Fixed blocks-range endpoint to include parent_hash and proposer fields
|
|
- **Block Synchronization Verification**: Both nodes in sync at height 27201
|
|
- **Git Conflict Resolution**: Fixed gitea pull conflicts on aitbc1 by stashing local changes
|
|
|
|
### OpenClaw Agent Communication (April 10, 2026)
|
|
- **Successfully sent agent message** from aitbc1 to aitbc
|
|
- **Wallet used**: temp-agent with password "temp123"
|
|
- **Transaction hash**: 0xdcf365542237eb8e40d0aa1cdb3fec2e77dbcb2475c30457682cf385e974b7b8
|
|
- **Agent daemon**: Running on aitbc configured to reply with "pong" on "ping"
|
|
- **Agent daemon service**: Deployed with systemd integration
|
|
|
|
### Multi-Node Blockchain Network
|
|
- **Genesis Node (aitbc1)**: Height 27201+, operational at 10.1.223.40:8006
|
|
- **Follower Node (aitbc)**: Height 27201+, operational at 10.1.223.93:8006
|
|
- **Synchronization**: Nodes synchronized via gossip with Redis backend
|
|
- **RPC Services**: Running on both nodes
|
|
|
|
### Documentation Updates (April 10, 2026)
|
|
- **Blockchain Synchronization**: `docs/blockchain/blockchain_synchronization_issues_and_fixes.md`
|
|
- **OpenClaw Cross-Node Communication**: `docs/openclaw/guides/openclaw_cross_node_communication.md`
|
|
- **Cross-Node Training**: `docs/openclaw/training/cross_node_communication_training.md`
|
|
- **Agent Daemon Service**: `services/agent_daemon.py` with systemd integration
|
|
|
|
## Development
|
|
|
|
See `docs/SETUP.md` for detailed setup instructions.
|
|
|
|
## Documentation
|
|
|
|
### Recent Documentation Updates
|
|
- [Cross-Node Communication Guide](docs/openclaw/guides/openclaw_cross_node_communication.md) - Implementation guide for multi-node agent messaging
|
|
- [Blockchain Synchronization Issues](docs/blockchain/blockchain_synchronization_issues_and_fixes.md) - Detailed documentation of sync fixes and workarounds
|
|
- [Cross-Node Training Module](docs/openclaw/training/cross_node_communication_training.md) - Training workflow for agent communication
|
|
- [OpenClaw Documentation](docs/openclaw/README.md) - Complete OpenClaw integration documentation
|
|
|
|
### Core Documentation
|
|
- [Main Documentation](docs/README.md) - Comprehensive project documentation
|
|
- [Setup Instructions](docs/SETUP.md) - Installation and configuration guide
|
|
- [Python Compatibility](docs/PYTHON_VERSION_STATUS.md) - Python version requirements
|
|
|
|
## Security
|
|
|
|
See `security/SECURITY_VULNERABILITY_REPORT.md` for security status.
|
|
|
|
## License
|
|
|
|
See `LICENSE` for licensing information.
|