Files
proxmox/docs/11-references/PATHS_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

53 lines
1.8 KiB
Markdown

# Path Reference
**Last Updated:** 2026-01-31
**Document Version:** 1.0
**Status:** Active Documentation
---
## Project Paths
### Source Project (Besu Configuration)
- **Path**: `/home/intlc/projects/smom-dbis-138`
- **Purpose**: Contains Besu configuration files, genesis, validator keys
- **Contents**:
- `config/genesis.json`
- `config/permissions-nodes.toml`
- `config/permissions-accounts.toml`
- `config/config-validator.toml`
- `config/config-sentry.toml`
- `config/config-rpc-public.toml`
- `keys/validators/` (validator keys)
### Deployment Project (Proxmox)
- **Path**: `/home/intlc/projects/proxmox`
- **Purpose**: Contains Proxmox deployment scripts and tools
- **Deployment Directory on Proxmox Host**: `/opt/smom-dbis-138-proxmox`
## Usage in Scripts
When running deployment scripts on the Proxmox host, use:
```bash
sudo ./scripts/deployment/deploy-validated-set.sh \
--source-project /home/intlc/projects/smom-dbis-138
```
## Important Notes
1. **Local vs Remote**: The source project path must be accessible from where the script runs
- If running locally on Proxmox host: Use `/home/intlc/projects/smom-dbis-138` (if accessible)
- If running remotely: Copy config files first or use a shared/mounted directory
2. **Alternative Approach**: Copy config files to Proxmox host first, then use local path:
```bash
# Copy config files to Proxmox host
scp -r /home/intlc/projects/smom-dbis-138/config root@192.168.11.10:/opt/smom-dbis-138-proxmox/config-source
scp -r /home/intlc/projects/smom-dbis-138/keys root@192.168.11.10:/opt/smom-dbis-138-proxmox/keys-source
# Then use local path on Proxmox host
sudo ./scripts/deployment/deploy-validated-set.sh \
--source-project /opt/smom-dbis-138-proxmox/source-config
```