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

@@ -25,9 +25,11 @@ from .commands.exchange import exchange
from .commands.agent import agent
from .commands.multimodal import multimodal
from .commands.optimize import optimize
from .commands.openclaw import openclaw
from .commands.marketplace_advanced import advanced
# from .commands.openclaw import openclaw # Temporarily disabled due to command registration issues
# from .commands.marketplace_advanced import advanced # Temporarily disabled due to command registration issues
from .commands.swarm import swarm
from .commands.chain import chain
from .commands.genesis import genesis
from .plugins import plugin, load_plugins
@@ -109,9 +111,23 @@ cli.add_command(exchange)
cli.add_command(agent)
cli.add_command(multimodal)
cli.add_command(optimize)
cli.add_command(openclaw)
cli.add_command(advanced)
# cli.add_command(openclaw) # Temporarily disabled due to command registration issues
# cli.add_command(advanced) # Temporarily disabled due to command registration issues
cli.add_command(swarm)
from .commands.chain import chain # NEW: Multi-chain management
from .commands.genesis import genesis # NEW: Genesis block commands
from .commands.node import node # NEW: Node management commands
from .commands.analytics import analytics # NEW: Analytics and monitoring
from .commands.agent_comm import agent_comm # NEW: Cross-chain agent communication
# from .commands.marketplace_cmd import marketplace # NEW: Global chain marketplace - disabled due to conflict
from .commands.deployment import deploy # NEW: Production deployment and scaling
cli.add_command(chain) # NEW: Multi-chain management
cli.add_command(genesis) # NEW: Genesis block commands
cli.add_command(node) # NEW: Node management commands
cli.add_command(analytics) # NEW: Analytics and monitoring
cli.add_command(agent_comm) # NEW: Cross-chain agent communication
# cli.add_command(marketplace) # NEW: Global chain marketplace - disabled due to conflict
cli.add_command(deploy) # NEW: Production deployment and scaling
cli.add_command(plugin)
load_plugins(cli)