Settings Setup Guide

Settings Configuration β€” Moon Scripts Bundler v2

In v2, all configuration is handled inside the application through the Settings tab β€” no .env file editing is required.


🌐 Network Configuration

Solana RPC URL (Required)

  • The RPC endpoint for network communication.

  • Tip: Use a premium RPC provider to avoid rate limits during bundling.

Solana WebSocket URL (Required)

  • WebSocket endpoint for real-time updates.

Block Engine URLs

  • A string of Jito block engine URLs.

  • Example:

    ny.mainnet.block-engine.jito.wtf:443
  • This controls where your transactions are sent for block 0 bundling.

Jito Tip (SOL)

  • Amount in SOL to tip Jito block producers for priority execution.

  • Example:

    0.0001

πŸ”‘ Wallet Configuration

Deployer Key (Required)

  • Private key for the main dev wallet.

  • Must be entered in JSON array format, e.g.:

    [246,153,186,188,...,216,186]
  • Used for: launching tokens and sending the initial dev buy.

Funder Key

  • Private key for the funding wallet that distributes SOL to bundle subwallets.

  • Must also be in JSON array format, e.g.:

    [52,206,195,0,134,...,83,191]

πŸ”’ Security Best Practices

  • Never share your private keys β€” even in screenshots or support requests.

  • Use dedicated wallets for the bot, not your main personal wallet.

  • Keep extra SOL in both wallets to avoid transaction failures.

  • Backup your keys securely offline.


πŸ›  Troubleshooting

Error
Likely Cause
Solution

Invalid private key format

Key not in JSON array format

Convert from Phantom/Solflare export into array format

RPC endpoint not responding

Wrong URL or provider issue

Check URL, try another RPC

Insufficient funds

Wallet underfunded

Add more SOL (5+ recommended for deployer)

Block engine connection failed

Invalid or unreachable URL

Verify block engine URL format

Last updated