docs: update CLI command syntax across workflow documentation
Some checks failed
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
API Endpoint Tests / test-api-endpoints (push) Has been cancelled
Some checks failed
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
API Endpoint Tests / test-api-endpoints (push) Has been cancelled
- Updated marketplace commands: `marketplace --action` → `market` subcommands - Updated wallet commands: direct flags → `wallet` subcommands - Updated AI commands: `ai-submit`, `ai-status` → `ai submit`, `ai status` - Updated blockchain commands: `chain` → `blockchain info` - Standardized command structure across all workflow files - Affected files: MULTI_NODE_MASTER_INDEX.md, TEST_MASTER_INDEX.md, multi-node-blockchain-marketplace
This commit is contained in:
@@ -34,18 +34,18 @@ echo "Height difference: $HEIGHT_DIFF blocks"
|
||||
# Check wallet balance using CLI
|
||||
echo "2. Checking aitbc wallet balance..."
|
||||
echo "=== aitbc wallet balance (local) ==="
|
||||
BALANCE=$(/opt/aitbc/aitbc-cli balance --name aitbc-user 2>/dev/null | grep "Balance:" | awk '{print $2}' || echo "0")
|
||||
BALANCE=$(/opt/aitbc/aitbc-cli wallet balance aitbc-user 2>/dev/null | grep "Balance:" | awk '{print $2}' || echo "0")
|
||||
echo $BALANCE AIT
|
||||
|
||||
# Get blockchain information using CLI
|
||||
echo "3. Blockchain information..."
|
||||
echo "=== Chain Information ==="
|
||||
/opt/aitbc/aitbc-cli chain
|
||||
/opt/aitbc/aitbc-cli blockchain info
|
||||
|
||||
# Network health check using CLI
|
||||
echo "4. Network health check..."
|
||||
echo "=== Network Status (local) ==="
|
||||
/opt/aitbc/aitbc-cli network 2>/dev/null || echo "Network status not available"
|
||||
/opt/aitbc/aitbc-cli network status 2>/dev/null || echo "Network status not available"
|
||||
|
||||
# Service status
|
||||
echo "5. Service status..."
|
||||
|
||||
Reference in New Issue
Block a user