add genesis command to CLI
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 3s
CLI Tests / test-cli (push) Failing after 3s
Documentation Validation / validate-docs (push) Successful in 5s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Integration Tests / test-service-integration (push) Successful in 1m10s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 2s
P2P Network Verification / p2p-verification (push) Successful in 1s
Python Tests / test-python (push) Failing after 10s
Security Scanning / security-scan (push) Successful in 1m10s

Imported genesis command module and registered it with the CLI command group.
This commit is contained in:
aitbc
2026-04-25 18:04:54 +02:00
parent 787ddcdae3
commit ca228163ea
5 changed files with 979 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ from pathlib import Path
from aitbc_cli.commands.gpu_marketplace import gpu
from aitbc_cli.commands.exchange_island import exchange_island
from aitbc_cli.commands.wallet import wallet
from aitbc_cli.commands.genesis import genesis
# Force version to 0.2.2
__version__ = "0.2.2"
@@ -159,6 +160,7 @@ cli.add_command(version)
cli.add_command(gpu)
cli.add_command(exchange_island)
cli.add_command(wallet)
cli.add_command(genesis)
if __name__ == '__main__':
cli()