SolanaMevBot
DeprecatedJupiter Bot (Deprecated)

Config Examples

Example configurations for the Jupiter bot

Deprecated: See Onchain Bot Config Examples for the current bot.

1. Demo Account (Jito Only)

Minimal config to get started:

KEYS:
  PRIVATE_KEY: "your-private-key"

JITO:
  ENABLED: true
  TIP_LAMPORTS: 1000
  BLOCK_ENGINES:
    - "https://mainnet.block-engine.jito.wtf"

BLIND_QUOTE_STRATEGY:
  BASE_MINTS:
    - mint: "So11111111111111111111111111111111111111112"
      trade_sizes: [0.1, 0.5]

BOT:
  RPC_URL: "https://your-rpc"

2. Copy Trade

Copy the top players' mints from the Dune dashboard:

INTERMEDIUM_MINTS:
  FROM_ADDRESSES:
    - "mint1..."
    - "mint2..."
    - "mint3..."

3. Spam Strategy

Aggressive RPC spamming:

SPAM:
  ENABLED: true
  PRIORITY_FEE: 50000
  RPC_URLS:
    - "https://rpc-1"
    - "https://rpc-2"
    - "https://rpc-3"

JITO:
  ENABLED: false

4. Super Spam

Focus on 1–2 mints with high transaction volume. High risk/reward:

BLIND_QUOTE_STRATEGY:
  BASE_MINTS:
    - mint: "So11111111111111111111111111111111111111112"
      trade_sizes: [1.0, 5.0, 10.0]

SPAM:
  ENABLED: true
  PRIORITY_FEE: 100000
  RPC_URLS:
    - "https://fast-rpc-1"
    - "https://fast-rpc-2"

INTERMEDIUM_MINTS:
  FROM_ADDRESSES:
    - "single-high-volume-mint"

Warning: Super spam can cost 0.2–1 SOL/hour in gas fees.

5. High Fee Backrun

For catching large arbitrage opportunities (one user captured 82 SOL in a single arb):

YELLOWSTONE:
  ENABLED: true
  ENDPOINT: "https://your-yellowstone"

BACKRUN_STRATEGY:
  DEXES: ["raydium", "orca", "meteora"]
  MIN_PRICE_IMPACT: 0.05

JITO:
  ENABLED: true
  TIP_LAMPORTS: 50000

On this page