chore: remove configuration files and enhance blockchain explorer with advanced search, analytics, and export features

- Delete .aitbc.yaml.example CLI configuration template
- Delete .lycheeignore link checker exclusion rules
- Delete .nvmrc Node.js version specification
- Add advanced search panel with filters for address, amount range, transaction type, time range, and validator
- Add analytics dashboard with transaction volume, active addresses, and block time metrics
- Add Chart.js integration
This commit is contained in:
oib
2026-03-02 15:38:25 +01:00
parent af185cdd8b
commit ccedbace53
271 changed files with 35942 additions and 2359 deletions

View File

@@ -1,6 +1,6 @@
# Miner Quick Start
**5 minutes** — Register your GPU and start earning AITBC tokens.
**5 minutes** — Register your GPU and start earning AITBC tokens with the enhanced CLI.
## Prerequisites
@@ -14,20 +14,69 @@
pip install -e . # from monorepo root
aitbc config set coordinator_url http://localhost:8000
export AITBC_API_KEY=your-key
# Verify installation
aitbc --version
aitbc --debug
```
## 2. Register & Start
```bash
aitbc miner register --name my-gpu --gpu v100 --count 1
aitbc miner poll # start accepting jobs
# Enhanced miner registration
aitbc miner register \
--name my-gpu \
--gpu v100 \
--count 1 \
--region us-west \
--price-per-hour 0.05
# Start accepting jobs
aitbc miner poll
```
## 3. Verify
## 3. Verify & Monitor
```bash
# Enhanced monitoring
aitbc miner status # GPU status + earnings
aitbc wallet balance # check token balance
aitbc monitor dashboard # real-time monitoring
```
## 4. Advanced Features
```bash
# GPU optimization
aitbc optimize enable --agent-id my-gpu-agent \
--mode performance \
--auto-tune
# Earnings tracking
aitbc miner earnings --period daily
aitbc miner earnings --period weekly
# Marketplace integration
aitbc marketplace offer create \
--miner-id my-gpu \
--gpu-model "RTX-4090" \
--gpu-memory "24GB" \
--price-per-hour "0.05" \
--models "gpt2,llama" \
--endpoint "http://localhost:11434"
```
## 5. Configuration Management
```bash
# Configuration profiles
aitbc config profiles create mining
aitbc config profiles set mining gpu_count 4
aitbc config profiles use mining
# Performance monitoring
aitbc monitor metrics --component gpu
aitbc monitor alerts --type gpu_temperature
```
## Next