34 lines
771 B
Markdown
34 lines
771 B
Markdown
|
|
# Quick Start - Deployment with PRIVATE_KEY
|
||
|
|
|
||
|
|
**Date**: 2025-12-24
|
||
|
|
**PRIVATE_KEY**: `0x5373d11ee2cad4ed82b9208526a8c358839cbfe325919fb250f062a25153d1c8`
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## One-Line Setup
|
||
|
|
|
||
|
|
```bash
|
||
|
|
cd /home/intlc/projects/proxmox/smom-dbis-138 && cat > .env << 'EOF'
|
||
|
|
# Chain 138 RPC Configuration
|
||
|
|
RPC_URL_138=http://192.168.11.250:8545
|
||
|
|
RPC_URL=http://192.168.11.250:8545
|
||
|
|
PRIVATE_KEY=0x5373d11ee2cad4ed82b9208526a8c358839cbfe325919fb250f062a25153d1c8
|
||
|
|
EOF
|
||
|
|
chmod 600 .env && source .env && echo "✅ PRIVATE_KEY configured. Deployer: $(cast wallet address $PRIVATE_KEY)"
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Deploy All Contracts
|
||
|
|
|
||
|
|
```bash
|
||
|
|
cd /home/intlc/projects/proxmox/smom-dbis-138
|
||
|
|
source .env
|
||
|
|
./scripts/deploy-and-integrate-all.sh
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
**That's it!** The script will handle everything automatically.
|
||
|
|
|