Files
proxmox/rpc-translator-138/docs/archive/OPTIONAL_ACTIONS_COMPLETE.md
defiQUG cb47cce074 Complete markdown files cleanup and organization
- Organized 252 files across project
- Root directory: 187 → 2 files (98.9% reduction)
- Moved configuration guides to docs/04-configuration/
- Moved troubleshooting guides to docs/09-troubleshooting/
- Moved quick start guides to docs/01-getting-started/
- Moved reports to reports/ directory
- Archived temporary files
- Generated comprehensive reports and documentation
- Created maintenance scripts and guides

All files organized according to established standards.
2026-01-06 01:46:25 -08:00

3.5 KiB

Optional User Actions - Setup Complete

Date: 2026-01-05
Status: TOOLS AND SCRIPTS CREATED


Summary

All tools and scripts for completing optional user actions have been created and are ready to use.


Created Tools & Scripts

Key Management Scripts

  1. scripts/generate-test-keys.sh

    • Generates test Ethereum keystore files
    • Usage: ./scripts/generate-test-keys.sh [count] [password]
    • Creates keystore files in standard Ethereum format
  2. scripts/setup-web3signer-keys.sh

    • Copies keystore files to Web3Signer
    • Sets proper permissions
    • Restarts Web3Signer service
    • Verifies keys are loaded
  3. scripts/get-web3signer-public-keys.sh

    • Retrieves public keys (addresses) from Web3Signer
    • Useful for getting addresses for allowlist configuration

Configuration Scripts

  1. scripts/configure-wallet-allowlist.sh
    • Configures wallet allowlist on all translator VMIDs
    • Updates .env files
    • Restarts translator services
    • Usage: ./scripts/configure-wallet-allowlist.sh "address1,address2,..."

Complete Setup Script

  1. scripts/setup-complete.sh
    • Complete automated setup
    • Generates keys → Copies to Web3Signer → Gets addresses → Configures allowlist
    • Usage: ./scripts/setup-complete.sh [key-count] [password]

Documentation

  1. QUICK_SETUP_GUIDE.md
    • Quick reference guide for optional user actions
    • Step-by-step instructions
    • Examples and troubleshooting

Usage Examples

Complete Automated Setup

cd /home/intlc/projects/proxmox/rpc-translator-138

# Generate 3 keys and configure everything
./scripts/setup-complete.sh 3 mypassword

Manual Step-by-Step

# 1. Generate keys
./scripts/generate-test-keys.sh 3 mypassword

# 2. Setup Web3Signer (copy keys)
./scripts/setup-web3signer-keys.sh ./keystores

# 3. Get public keys
./scripts/get-web3signer-public-keys.sh

# 4. Configure allowlist
./scripts/configure-wallet-allowlist.sh "0x1234...,0xabcd..."

Current Status

  • Web3Signer: Running and ready for keys
  • Translator services: Ready for allowlist configuration
  • Tools: Created and ready to use
  • Keys: Need to be generated/imported (user action)
  • Allowlist: Needs to be configured (user action)

Next Steps

To complete the optional user actions:

  1. Generate keys (if using test keys):

    ./scripts/setup-complete.sh 3 mypassword
    
  2. Or import production keys:

    • Prepare keystore files
    • Use scripts/setup-web3signer-keys.sh to copy them
    • Get addresses with scripts/get-web3signer-public-keys.sh
    • Configure allowlist with scripts/configure-wallet-allowlist.sh

Verification

After setup, verify:

# Check Web3Signer keys
./scripts/get-web3signer-public-keys.sh

# Check allowlist configuration
./scripts/configure-wallet-allowlist.sh

# Monitor services
./scripts/monitor-services.sh

Security Notes

⚠️ Important:

  • Test keys generated by scripts are for testing only
  • Change passwords for production use
  • Store production keys securely
  • Always backup keys (encrypted)
  • Configure allowlist in production

Files Created

  • scripts/generate-test-keys.sh
  • scripts/setup-web3signer-keys.sh
  • scripts/get-web3signer-public-keys.sh
  • scripts/configure-wallet-allowlist.sh
  • scripts/setup-complete.sh
  • QUICK_SETUP_GUIDE.md
  • OPTIONAL_ACTIONS_COMPLETE.md (this file)

All tools are ready to use! 🚀