JaredFromSubway is an automated Maximal Extractable Value (MEV) bot that operates on the Ethereum blockchain. It monitors the mempool for profitable opportunities including sandwich attacks, flash loan arbitrage, and liquidations. The bot constructs and submits transaction bundles through Flashbots to extract value from pending transactions.
The basic workflow to get your bot running follows five steps:
# 1. Authenticate with your access token
> init
# 2. Import your Ethereum wallet
> wallet <your_private_key>
# 3. Deploy the MEV smart contract
> deploy
# 4. Configure your strategy parameters
> set min_profit 0.01
> set max_gas 50
# 5. Start the bot
> startStep 1: Authentication. Run the init command in the terminal. You will be prompted to enter your access token. This authenticates your session and unlocks all bot commands.
Step 2: Import Wallet. Use wallet <private_key> to import your Ethereum wallet. The private key is used to sign transactions and never leaves your session. Your wallet must contain ETH to pay for gas.
Step 3: Deploy Contract. Run deploy to deploy the MEV smart contract to Ethereum mainnet. This contract is the execution layer that handles flash loans, DEX swaps, and profit extraction.
Step 4: Configure. Adjust strategy parameters using set <key> <value>. Key settings include minimum profit threshold, maximum gas price, and slippage tolerance.
Step 5: Start Bot. Run start to begin mempool scanning. The bot will continuously monitor for profitable opportunities and execute trades automatically.