SolanaMevBot
  • 🤖SolanaMevBot - Solana Arbitrage Bot
    • 📘Blog
      • The Current Landscape of MEV on Solana
      • How to Frontrun on Solana: A Step-by-Step Guide
    • đŸ’ĩFees
  • Onchain Bot
    • â„šī¸How this bot work
    • đŸ› ī¸Getting started
    • â›“ī¸Onchain program
    • 🔍Address lookup table
    • 📝Bot configurations
      • 📚Config examples
  • 🚀Releases
  • â€ŧī¸Trouble shooting
  • 💹Performance tuning
  • Onchain Bot Dashboard
  • Jupiter Bot
    • â„šī¸How this bot work
    • đŸ› ī¸Getting started
    • 📝Bot configurations
      • 📚Config examples
    • 🔡Common workflow
    • 💹Performance tuning
    • 🧩Bot Strategy
    • â€ŧī¸Trouble shooting
    • 🚀Releases
    • ❓FAQ
    • Dashboard
  • Community
    • Discord
    • Telegram
Powered by GitBook
On this page
  1. Onchain Bot
  2. Bot configurations

Config examples

This is a very simple config to arb token Glonk(GUM5Vd4qe5kgTBHNfmLRaZSKKmYdAWxLJ18DY1Uzpump). It will check if there's a profitable trade between the pump amm pool FYDmYvJ3gynXGGFnAbTwN8CRR3LrrNdhztbkuybvYtj2 and the meteora dlmm pool ToLi6ihgfv4HLPE8GujTxKAexRxopDyk31NVpNgyxuY

You just need to fill in your rpc url in [rpc] field and sending_rpc_urls field. And your private_key.

[bot]
merge_mints = false
compute_unit_limit = 600_000

[[routing.mint_config_list]]
mint = "GUM5Vd4qe5kgTBHNfmLRaZSKKmYdAWxLJ18DY1Uzpump"
pump_pool_list = ["FYDmYvJ3gynXGGFnAbTwN8CRR3LrrNdhztbkuybvYtj2"]
meteora_dlmm_pool_list = ["ToLi6ihgfv4HLPE8GujTxKAexRxopDyk31NVpNgyxuY",]
lookup_table_accounts = []
process_delay = 400

[rpc]
url = "xxx"

[spam]
sending_rpc_urls = [
  "xxx",
]
enabled = true
compute_unit_price = { strategy = "Random", from = 10000, to = 50000, count = 1 }
max_retries = 10

[flashloan]
enabled = true

[wallet]
private_key = "xxx"
PreviousBot configurationsNextReleases

Last updated 15 days ago

📝
📚