Files
explorer-monorepo/docs/DEPLOYMENT_EXECUTION_SUMMARY.md

1.7 KiB

Deployment Execution Summary

Date: 2025-12-24
Status: Ready for Manual Execution


What's Ready

  1. All contracts compile successfully
  2. All deployment scripts ready
  3. PRIVATE_KEY provided: 0x5373d11ee2cad4ed82b9208526a8c358839cbfe325919fb250f062a25153d1c8
  4. RPC URL configured: http://192.168.11.250:8545
  5. All automation scripts created

🚀 Execute Deployment

Due to shell environment issues, please run the deployment manually using the commands in:

explorer-monorepo/docs/RUN_DEPLOYMENT_NOW.md

This file contains all the exact commands you need to copy and paste.


Quick Command Reference

# 1. Setup
cd /home/intlc/projects/proxmox/smom-dbis-138
cat > .env << 'EOF'
RPC_URL=http://192.168.11.250:8545
PRIVATE_KEY=0x5373d11ee2cad4ed82b9208526a8c358839cbfe325919fb250f062a25153d1c8
EOF
source .env

# 2. Deploy all (one by one)
forge script script/DeployComplianceRegistry.s.sol:DeployComplianceRegistry --rpc-url $RPC_URL --broadcast --legacy --gas-price 20000000000 --via-ir -vv
forge script script/DeployCompliantUSDT.s.sol:DeployCompliantUSDT --rpc-url $RPC_URL --broadcast --legacy --gas-price 20000000000 --via-ir -vv
forge script script/DeployCompliantUSDC.s.sol:DeployCompliantUSDC --rpc-url $RPC_URL --broadcast --legacy --gas-price 20000000000 --via-ir -vv
forge script script/DeployTokenRegistry.s.sol:DeployTokenRegistry --rpc-url $RPC_URL --broadcast --legacy --gas-price 20000000000 -vv
forge script script/DeployFeeCollector.s.sol:DeployFeeCollector --rpc-url $RPC_URL --broadcast --legacy --gas-price 20000000000 -vv

See RUN_DEPLOYMENT_NOW.md for complete step-by-step instructions with registration commands.