Files
aitbc/docs/blockchain
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
..

Blockchain Documentation

Generated: 2026-03-08 13:06:38 Last Updated: 2026-04-22 Total Files: 3

Documentation Files

Multi-Node Blockchain Workflows

Comprehensive Windsurf workflows for multi-node blockchain deployment and operations:

  • Core Setup - Prerequisites, environment configuration, and basic node setup
  • Operations - Daily operations, monitoring, and troubleshooting
  • Advanced Features - Smart contracts, security testing, and performance optimization
  • Marketplace Testing - GPU provider testing, transaction tracking, and verification procedures
  • Production Deployment - Security hardening, monitoring, and scaling strategies
  • Reference - Configuration overview, verification commands, and best practices

Transaction Types

The AITBC blockchain supports the following transaction types:

  • TRANSFER: Standard value transfer between accounts
  • MESSAGE: On-chain messaging (value=0, fee-only) - allows sending short text messages without balance transfers
  • RECEIPT_CLAIM: Claim rewards from job completion receipts
  • GPU_MARKETPLACE: GPU marketplace transactions (bids, offers, purchases)
  • EXCHANGE: Exchange transactions (orders, trades, swaps, liquidity)

MESSAGE Transaction Type

The MESSAGE transaction type allows users to send short on-chain messages without affecting account balances. The message is stored in the transaction payload and only the fee is deducted from the sender's balance.

Usage:

curl -X POST http://localhost:8006/rpc/transaction \
  -H "Content-Type: application/json" \
  -d '{"type":"MESSAGE","from":"address","to":"address","amount":0,"fee":1000,"nonce":1,"payload":{"message":"Hello blockchain!"},"sig":"signature"}'

Characteristics:

  • value must be 0
  • fee > 0
  • recipient can be any address (or special "null" address)
  • No balance transfers (only fee deduction)
  • Message stored in transaction payload

Category Overview

This section contains documentation related to blockchain node setup, synchronization, and network configuration.


Manual index