Files
aitbc/docs/advanced/03_architecture/6_trade-exchange.md
AITBC System dda703de10 feat: implement v0.2.0 release features - agent-first evolution
 v0.2 Release Preparation:
- Update version to 0.2.0 in pyproject.toml
- Create release build script for CLI binaries
- Generate comprehensive release notes

 OpenClaw DAO Governance:
- Implement complete on-chain voting system
- Create DAO smart contract with Governor framework
- Add comprehensive CLI commands for DAO operations
- Support for multiple proposal types and voting mechanisms

 GPU Acceleration CI:
- Complete GPU benchmark CI workflow
- Comprehensive performance testing suite
- Automated benchmark reports and comparison
- GPU optimization monitoring and alerts

 Agent SDK Documentation:
- Complete SDK documentation with examples
- Computing agent and oracle agent examples
- Comprehensive API reference and guides
- Security best practices and deployment guides

 Production Security Audit:
- Comprehensive security audit framework
- Detailed security assessment (72.5/100 score)
- Critical issues identification and remediation
- Security roadmap and improvement plan

 Mobile Wallet & One-Click Miner:
- Complete mobile wallet architecture design
- One-click miner implementation plan
- Cross-platform integration strategy
- Security and user experience considerations

 Documentation Updates:
- Add roadmap badge to README
- Update project status and achievements
- Comprehensive feature documentation
- Production readiness indicators

🚀 Ready for v0.2.0 release with agent-first architecture
2026-03-18 20:17:23 +01:00

305 lines
7.5 KiB
Markdown

# Trade Exchange - AITBC Documentation
Bitcoin-to-AITBC exchange with QR payments, user management, and real-time trading. Buy tokens with BTC instantly.
<span class="component-status live">● Live</span>
[Launch Exchange →](https://aitbc.bubuit.net/Exchange/)
## Overview
The AITBC Trade Exchange is a crypto-only platform that enables users to exchange Bitcoin for AITBC tokens. It features a modern, responsive interface with user authentication, wallet management, and real-time trading capabilities.
### Key Features
- Bitcoin wallet integration with QR code payments
- User management with wallet-based authentication
- Real-time payment monitoring and confirmation
- Individual user wallets and balance tracking
- Transaction history and receipt management
- Mobile-responsive design
## How It Works
The Trade Exchange provides a simple, secure way to acquire AITBC tokens using Bitcoin.
#### 1. Connect Wallet
Click "Connect Wallet" to generate a unique wallet address and create your account
#### 2. Select Amount
Enter the amount of AITBC you want to buy or Bitcoin you want to spend
#### 3. Make Payment
Scan the QR code or send Bitcoin to the provided address
#### 4. Receive Tokens
AITBC tokens are credited to your wallet after confirmation
## User Management
The exchange uses a wallet-based authentication system that requires no passwords.
### Authentication Flow
- Users connect with a wallet address (auto-generated for demo)
- System creates or retrieves user account
- Session token issued for secure API access
- 24-hour automatic session expiry
### User Features
- Unique username and user ID
- Personal AITBC wallet with balance tracking
- Complete transaction history
- Secure logout functionality
## Exchange API
The exchange provides RESTful APIs for user management and payment processing.
### User Management Endpoints
`POST /api/users/login`
Login or register with wallet address
`GET /api/users/me`
Get current user profile
`GET /api/users/{id}/balance`
Get user wallet balance
`POST /api/users/logout`
Logout and invalidate session
### Exchange Endpoints
`POST /api/exchange/create-payment`
Create Bitcoin payment request
`GET /api/exchange/payment-status/{id}`
Check payment confirmation status
`GET /api/exchange/rates`
Get current exchange rates
## Security Features
The exchange implements multiple security measures to protect user funds and data.
### Authentication Security
- SHA-256 hashed session tokens
- 24-hour automatic session expiry
- Server-side session validation
- Secure token invalidation on logout
### Payment Security
- Unique payment addresses for each transaction
- Real-time blockchain monitoring
- Payment confirmation requirements (1 confirmation)
- Automatic refund for expired payments
### Privacy
- No personal data collection
- User data isolation
- GDPR compliant design
## Configuration
The exchange can be configured for different environments and requirements.
### Exchange Settings
```bash
# Exchange Rate
BTC_TO_AITBC_RATE=100000
# Payment Settings
MIN_CONFIRMATIONS=1
PAYMENT_TIMEOUT=3600 # 1 hour
MIN_PAYMENT=0.0001 # BTC
MAX_PAYMENT=10 # BTC
# Bitcoin Network
BITCOIN_NETWORK=testnet
BITCOIN_RPC_URL=http://localhost:8332
BITCOIN_RPC_USER=user
BITCOIN_RPC_PASS=password
```
## Getting Started
Start using the Trade Exchange in just a few simple steps.
### 1. Access the Exchange
Visit: [https://aitbc.bubuit.net/Exchange/](https://aitbc.bubuit.net/Exchange/)
### 2. Connect Your Wallet
Click the "Connect Wallet" button. A unique wallet address will be generated for you.
### 3. Get Testnet Bitcoin
For testing, get free testnet Bitcoin from:
[testnet-faucet.mempool.co](https://testnet-faucet.mempool.co/)
### 4. Make Your First Purchase
1. Enter the amount of AITBC you want to buy
2. Scan the QR code with your Bitcoin wallet
3. Wait for confirmation (usually 10-20 minutes on testnet)
4. Receive AITBC tokens in your wallet
## API Examples
### Create Payment Request
```bash
curl -X POST https://aitbc.bubuit.net/api/exchange/create-payment \
-H "Content-Type: application/json" \
-H "X-Session-Token: your-session-token" \
-d '{
"aitbc_amount": 1000,
"btc_amount": 0.01
}'
```
Response:
```json
{
"payment_id": "pay_123456",
"btc_address": "tb1qxy2...",
"btc_amount": 0.01,
"qr_code": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...",
"expires_at": "2025-01-29T15:50:00Z"
}
```
### Check Payment Status
```bash
curl -X GET https://aitbc.bubuit.net/api/exchange/payment-status/pay_123456 \
-H "X-Session-Token: your-session-token"
```
Response:
```json
{
"payment_id": "pay_123456",
"status": "confirmed",
"confirmations": 1,
"aitbc_amount": 1000,
"credited_at": "2025-01-29T14:50:00Z"
}
```
## Integration Guide
### Frontend Integration
```javascript
// Connect wallet
async function connectWallet() {
const response = await fetch('/api/users/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ wallet_address: generatedAddress })
});
const { user, token } = await response.json();
localStorage.setItem('sessionToken', token);
return user;
}
// Create payment
async function createPayment(aitbcAmount) {
const response = await fetch('/api/exchange/create-payment', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Session-Token': localStorage.getItem('sessionToken')
},
body: JSON.stringify({ aitbc_amount: aitbcAmount })
});
return response.json();
}
```
### Backend Integration
```python
# Python example using requests
import requests
class AITBCExchange:
def __init__(self, base_url="https://aitbc.bubuit.net"):
self.base_url = base_url
self.session_token = None
def login(self, wallet_address):
response = requests.post(
f"{self.base_url}/api/users/login",
json={"wallet_address": wallet_address}
)
data = response.json()
self.session_token = data["token"]
return data["user"]
def create_payment(self, aitbc_amount):
headers = {"X-Session-Token": self.session_token}
response = requests.post(
f"{self.base_url}/api/exchange/create-payment",
json={"aitbc_amount": aitbc_amount},
headers=headers
)
return response.json()
```
## Troubleshooting
### Common Issues
1. **Payment not detected**
- Verify the transaction was broadcast to the network
- Check if the payment address is correct
- Wait for at least 1 confirmation
2. **Session expired**
- Click "Connect Wallet" to create a new session
- Sessions automatically expire after 24 hours
3. **QR code not working**
- Ensure your Bitcoin wallet supports QR codes
- Manually copy the address if needed
- Check for sufficient wallet balance
### Support
- Check transaction on [block explorer](https://mempool.space/testnet)
- Contact support: [aitbc@bubuit.net](mailto:aitbc@bubuit.net)
- Discord: [#exchange-support](https://discord.gg/aitbc)
## Rate Limits
To ensure fair usage, the exchange implements rate limiting:
- 10 payments per hour per user
- 100 API requests per minute per session
- Maximum payment: 10 BTC per transaction
## Future Updates
Planned features for the Trade Exchange:
- Support for additional cryptocurrencies (ETH, USDT)
- Advanced order types (limit orders)
- Trading API for programmatic access
- Mobile app support
- Lightning Network integration
---
**Start trading now at [aitbc.bubuit.net/Exchange/](https://aitbc.bubuit.net/Exchange/)**