NotArb - Solana Arbitrage Bot
  • Getting Started
    • Welcome
    • Changelog
    • The Basics
  • Setup
    • Start Here!
    • Prerequisites
      • Recommended Apps
      • RPC Providers
      • Linux Machines
    • Logging in Using SSH
    • Securing Your Machine
      • User Management
      • SSH Key-Based Authentication
      • Setting up UFW
      • Setting up fail2ban
      • Securing Wallet Private Key
    • Setting up for FTP
    • Initial Setup of NotArb
    • Using Screens
    • Making a Solana Wallet
  • Configurations
    • Using Nano
    • Config Basics
    • bot-config.toml
      • General Bot Settings
      • WSOL Unwrapper
      • JITO Strategy Settings
      • Spam Strategy Settings
      • Token Lists Settings
      • Swap Settings
    • jupiter-config.toml
      • Manager Settings
      • Env Settings
      • Mint Filters
    • Shell Scripts
      • run-bot.sh
      • run-jupiter.sh
      • run-screens.sh
  • Usage
    • Strategies
      • Jito Strategy
      • Spam Strategy
    • Updating
  • EXPERIMENTAL FEATURES
    • Overview & Caution
    • New Setup Configurations
  • New Mint Configurations
  • Default Strategy Fields
  • Jito Example
  • Spam Example
  • Extra Features
  • Support
    • FAQ
    • Common Issues
    • Troubleshooting
    • NotArb Docs Tracker
    • Contact
Powered by GitBook
On this page

Jito Example

Basic Jito Example Configuration

Minimum gains must cover network and tip fees (at least 11,000 lamports total).

[bot_misc]
keypair_path="/path/to/keypair.json"
protect_keypair=true
acknowledge_terms_of_service=false
acknowledge_external_price_risk=false
acknowledge_experimental_release=false

[jupiter]
url="http://127.0.0.1:8080"
workers=6
connect_timeout_ms=1000
request_timeout_ms=1000

[blockhash_fetcher]
rpc_url="http://111.222.333.69:8899/"

[token_accounts_fetcher]
rpc_url="http://111.222.333.69:8899/"

[[file_mints]]
enabled=true
update_seconds=10
path="/path/to/mints.txt"

[plugin]
class="org.notarb.DefaultJito"

[[jito_unbound_rpc]]
url="https://slc.mainnet.block-engine.jito.wtf"
bind_ips=[
    "127.0.0.1",
]
proxy_keypairs_path=""

busy_workers = 2
spin_workers = 0
yield_workers = 0

connect_timeout_ms = 5000
request_timeout_ms = 5000
idle_timeout_ms = 10_000

[[swap]]
enabled=true
mint="SOL"

[swap.strategy_defaults]
cooldown_ms=10

[[swap.strategy]]
min_spend=0.5
max_spend=1
min_gain_lamports=20000
static_tip_lamports=6900

[[swap.strategy]]
min_spend=0.5
max_spend=1
min_gain_lamports=20000
static_tip_percent=5
PreviousDefault Strategy FieldsNextSpam Example

Last updated 2 months ago