docs: merge docs/project files into appropriate doc directories
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m6s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 5s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Node Failover Simulation / failover-test (push) Failing after 4s
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m6s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 5s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Node Failover Simulation / failover-test (push) Failing after 4s
- Moved ai-economics/ to docs/ai-economics/ - Moved completion/ to docs/completion/ - Merged cli/ with docs/cli/ - Merged infrastructure/ with docs/infrastructure/ - Moved planning/ to docs/planning/ - Moved requirements/ to docs/requirements/ - Moved workspace/ to docs/development/workspace/ - Moved 1_files.md to docs/reference/REPOSITORY_STRUCTURE.md - Moved 2_roadmap.md to docs/ROADMAP.md - Moved 3_infrastructure.md to docs/infrastructure/INFRASTRUCTURE.md - Moved SECURITY.md to docs/security/SECURITY.md - Moved PROJECT_STRUCTURE.md to docs/archive/GPU_PROJECT_STRUCTURE.md - Moved WORKING_SETUP.md to docs/guides/getting-started/WORKING_SETUP.md - Moved E2E_TEST_CREATION_SUMMARY.md to docs/reports/E2E_TEST_CREATION_SUMMARY.md - Moved SQLMODEL_METADATA_FIX_SUMMARY.md to docs/reports/SQLMODEL_METADATA_FIX_SUMMARY.md - Moved GITHUB_PULL_SUMMARY.md to docs/reports/GITHUB_PULL_SUMMARY.md - Moved GIFT_CERTIFICATE_newuser.md to docs/guides/getting-started/GIFT_CERTIFICATE.md - Moved user_profile_newuser.md to docs/guides/getting-started/USER_PROFILE.md - Moved aitbc.md to docs/infrastructure/NODE_AITBC.md - Moved aitbc1.md to docs/infrastructure/NODE_AITBC1.md - Updated project/README.md with new documentation locations - Removed empty subdirectories from docs/project/ - Created docs/MERGE_PLAN.md for reference
This commit is contained in:
178
docs/guides/getting-started/USER_PROFILE.md
Normal file
178
docs/guides/getting-started/USER_PROFILE.md
Normal file
@@ -0,0 +1,178 @@
|
||||
# AITBC Network User Profile
|
||||
|
||||
## User Information
|
||||
- **Username**: newuser
|
||||
- **Wallet Address**: aitbc1newuser_simple
|
||||
- **Wallet Type**: Simple Wallet
|
||||
- **Created**: 2026-03-07T11:23:24Z
|
||||
- **Status**: Active and Ready to Join
|
||||
|
||||
## Network Details
|
||||
- **Network**: AITBC Enhanced Development Network
|
||||
- **Chain ID**: aitbc-enhanced-devnet
|
||||
- **Blockchain Endpoint**: http://localhost:8005
|
||||
- **Coordinator API**: http://localhost:8011
|
||||
|
||||
## Available Features for New Users
|
||||
|
||||
### 🤖 AI Trading Engine
|
||||
- **Endpoint**: http://localhost:8010
|
||||
- **Features**: Machine learning trading algorithms, predictive analytics, portfolio optimization
|
||||
- **Access**: Through coordinator API
|
||||
|
||||
### 🔍 AI Surveillance
|
||||
- **Endpoint**: http://localhost:8011
|
||||
- **Features**: Behavioral analysis, risk assessment, market integrity protection
|
||||
- **Access**: Through coordinator API
|
||||
|
||||
### 📊 Advanced Analytics
|
||||
- **Endpoint**: http://localhost:8012
|
||||
- **Features**: Real-time market insights, performance metrics, custom reports
|
||||
- **Access**: Through coordinator API
|
||||
|
||||
### 🏢 Enterprise Integration
|
||||
- **Endpoint**: http://localhost:8013
|
||||
- **Features**: Multi-tenant API gateway, enterprise security, compliance automation
|
||||
- **Access**: Through coordinator API
|
||||
|
||||
## Getting Started Guide
|
||||
|
||||
### 1. Wallet Setup
|
||||
```bash
|
||||
# Check wallet balance
|
||||
aitbc --test-mode wallet balance
|
||||
|
||||
# Switch to user wallet
|
||||
aitbc --test-mode wallet switch newuser
|
||||
|
||||
# View wallet information
|
||||
aitbc --test-mode wallet info
|
||||
```
|
||||
|
||||
### 2. Request Initial Funds
|
||||
```bash
|
||||
# From faucet (when available)
|
||||
aitbc --test-mode wallet send aitbc1newuser_simple 100
|
||||
|
||||
# Check transaction history
|
||||
aitbc --test-mode wallet history
|
||||
```
|
||||
|
||||
### 3. Join AI Trading
|
||||
```bash
|
||||
# Start AI trading engine
|
||||
aitbc ai-trading start --strategy mean_reversion
|
||||
|
||||
# Check trading status
|
||||
aitbc ai-trading status
|
||||
|
||||
# View trading analytics
|
||||
aitbc ai-trading analytics
|
||||
```
|
||||
|
||||
### 4. Access Surveillance
|
||||
```bash
|
||||
# Start AI surveillance monitoring
|
||||
aitbc ai-surveillance start
|
||||
|
||||
# Check surveillance alerts
|
||||
aitbc ai-surveillance alerts
|
||||
|
||||
# View risk assessment
|
||||
aitbc ai-surveillance risk-profile --user newuser
|
||||
```
|
||||
|
||||
### 5. Use Advanced Analytics
|
||||
```bash
|
||||
# Get market analytics
|
||||
aitbc advanced-analytics market-data --symbol AITBC
|
||||
|
||||
# View performance metrics
|
||||
aitbc advanced-analytics performance --wallet aitbc1newuser_simple
|
||||
|
||||
# Generate custom report
|
||||
aitbc advanced-analytics report --type portfolio --user newuser
|
||||
```
|
||||
|
||||
## Network Services
|
||||
|
||||
### Blockchain Services
|
||||
- **Block Explorer**: http://localhost:8016
|
||||
- **RPC Endpoint**: http://localhost:8005
|
||||
- **WebSocket**: ws://localhost:8005/ws
|
||||
|
||||
### AI Services
|
||||
- **AI Trading Engine**: Integrated with coordinator
|
||||
- **AI Surveillance**: Behavioral monitoring
|
||||
- **Advanced Analytics**: Real-time insights
|
||||
- **Multi-Modal AI**: GPU-accelerated processing
|
||||
|
||||
### Enterprise Features
|
||||
- **API Gateway**: Multi-tenant support
|
||||
- **Security**: Enhanced encryption and ZK proofs
|
||||
- **Compliance**: Automated regulatory reporting
|
||||
- **Cross-Chain**: Asset transfer capabilities
|
||||
|
||||
## Security & Privacy
|
||||
|
||||
### Wallet Security
|
||||
- **Encryption**: Password-protected wallet
|
||||
- **Backup**: Regular wallet backups recommended
|
||||
- **Multi-sig**: Available for enterprise users
|
||||
|
||||
### Network Security
|
||||
- **Zero-Knowledge Proofs**: Privacy-preserving transactions
|
||||
- **AI Surveillance**: Continuous monitoring
|
||||
- **Enterprise Security**: Advanced threat detection
|
||||
|
||||
## Support & Documentation
|
||||
|
||||
### CLI Help
|
||||
```bash
|
||||
# General help
|
||||
aitbc --help
|
||||
|
||||
# Wallet commands
|
||||
aitbc wallet --help
|
||||
|
||||
# AI trading commands
|
||||
aitbc ai-trading --help
|
||||
|
||||
# Surveillance commands
|
||||
aitbc ai-surveillance --help
|
||||
|
||||
# Analytics commands
|
||||
aitbc advanced-analytics --help
|
||||
```
|
||||
|
||||
### API Documentation
|
||||
- **Blockchain API**: http://localhost:8005/docs
|
||||
- **Coordinator API**: http://localhost:8011/docs
|
||||
|
||||
### Community & Support
|
||||
- **Network Status**: Available through coordinator API
|
||||
- **Performance Metrics**: Real-time monitoring
|
||||
- **Issue Reporting**: Through CLI and API endpoints
|
||||
|
||||
## Next Steps
|
||||
|
||||
1. **Fund Your Wallet**: Request initial AITBC tokens
|
||||
2. **Explore Features**: Try AI trading and analytics
|
||||
3. **Join Community**: Participate in network governance
|
||||
4. **Develop**: Build applications on AITBC platform
|
||||
5. **Earn**: Participate in staking and liquidity provision
|
||||
|
||||
## Wallet Information Summary
|
||||
|
||||
| Property | Value |
|
||||
|-----------|-------|
|
||||
| Username | newuser |
|
||||
| Wallet Address | aitbc1newuser_simple |
|
||||
| Wallet Type | Simple |
|
||||
| Balance | 0.0 AITBC |
|
||||
| Status | Active |
|
||||
| Created | 2026-03-07T11:23:24Z |
|
||||
| Network | AITBC Enhanced Devnet |
|
||||
|
||||
---
|
||||
*This user profile is ready to join the AITBC network with full access to all enhanced features including AI trading, surveillance, analytics, and enterprise integration.*
|
||||
Reference in New Issue
Block a user