Files
proxmox/docs/12-quick-reference/VALIDATED_SET_QUICK_REFERENCE.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

82 lines
1.9 KiB
Markdown

# Validated Set Deployment - Quick Reference
**Last Updated:** 2026-01-31
**Document Version:** 1.0
**Status:** Active Documentation
---
## One-Command Deployment
```bash
cd /opt/smom-dbis-138-proxmox
sudo ./scripts/deployment/deploy-validated-set.sh \
--source-project /path/to/smom-dbis-138
```
## Common Commands
### Deploy Everything
```bash
sudo ./scripts/deployment/deploy-validated-set.sh --source-project /path/to/smom-dbis-138
```
### Bootstrap Existing Network
```bash
sudo ./scripts/network/bootstrap-network.sh
```
### Validate Validators
```bash
sudo ./scripts/validation/validate-validator-set.sh
```
### Check Node Health
```bash
sudo ./scripts/health/check-node-health.sh <VMID>
```
### Check All Services
```bash
for vmid in 1000 1001 1002 1003 1004 1500 1501 1502 1503 2500 2501 2502; do
echo "=== Container $vmid ==="
pct exec $vmid -- systemctl status besu-validator besu-sentry besu-rpc --no-pager 2>/dev/null | head -5
done
```
## VMID Reference
| VMID Range | Type | Service Name |
|------------|------|--------------|
| 1000-1004 | Validators | besu-validator |
| 1500-1503 | Sentries | besu-sentry |
| 2500-2502 | RPC Nodes | besu-rpc |
## Script Options
### deploy-validated-set.sh
- `--skip-deployment` - Skip container deployment
- `--skip-config` - Skip configuration copy
- `--skip-bootstrap` - Skip network bootstrap
- `--skip-validation` - Skip validation
- `--source-project PATH` - Source project path
- `--help` - Show help
## Troubleshooting Quick Commands
```bash
# View logs
pct exec <vmid> -- journalctl -u besu-validator -f
# Restart service
pct exec <vmid> -- systemctl restart besu-validator
# Check connectivity
pct exec <vmid> -- netstat -tuln | grep 30303
# Check RPC (if enabled)
pct exec <vmid> -- curl -s -X POST -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' \
http://localhost:8545
```