Back to Home

Documentation

JittoGen Logo
JittoGen

JittoGen Bot Builder Documentation

Welcome to JittoGen, the no-code platform for building sophisticated MEV bots. Create, deploy, and manage profitable MEV strategies without writing a single line of code.

No-Code Builder

Drag-and-drop interface for creating complex MEV strategies

Automated Execution

24/7 bot execution with real-time opportunity detection

Quick Start

1. Create Your Account

Sign up for a free JittoGen account to access the bot builder and start creating your first MEV bot.

https://app.jittogen.com/signup

2. Choose a Bot Template

Select from our pre-built templates for common MEV strategies like arbitrage, sandwich attacks, and liquidations:

Available Templates:
• Arbitrage Bot - Cross-DEX price differences
• Sandwich Bot - Front/back-run large trades  
• Liquidation Bot - Capture liquidation rewards
• Custom Bot - Build from scratch

3. Configure & Deploy

Customize your bot parameters and deploy to mainnet:

{
  "strategy": "arbitrage",
  "min_profit": 0.01,
  "max_gas": 50,
  "tokens": ["WETH", "USDC", "WBTC"],
  "auto_deploy": true
}

Bot Templates

Arbitrage BotPOPULAR

Automatically detect and execute profitable arbitrage opportunities across multiple DEXs.

Features

  • • Multi-DEX price monitoring
  • • Gas optimization algorithms
  • • Profit threshold controls
  • • Real-time execution
Sandwich BotADVANCED

Front-run and back-run large trades to capture MEV from slippage.

Configuration

{
  "min_trade_size": 10000,
  "max_slippage": 2.0,
  "target_pairs": ["WETH/USDC"],
  "mempool_monitoring": true
}
Liquidation BotPROFITABLE

Monitor lending protocols and capture liquidation rewards when positions become undercollateralized.

Supported Protocols

  • • Aave V3
  • • Compound V3
  • • MakerDAO
  • • Euler Finance

Authentication

Wallet Connection

Connect your Web3 wallet to start building and deploying MEV bots. We support all major wallets.

// Supported Wallets
• MetaMask
• WalletConnect
• Coinbase Wallet
• Rainbow Wallet
• Trust Wallet

API Authentication

Generate API keys for programmatic access to your bots:

curl -X POST https://api.jittogen.com/v1/bots \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"strategy": "arbitrage", "tokens": ["WETH", "USDC"]}'

MEV Strategies

Arbitrage Strategy

Profit from price differences across decentralized exchanges by buying low on one DEX and selling high on another.

Key Parameters

{
  "min_profit_threshold": 0.5,
  "max_gas_price": 100,
  "slippage_tolerance": 1.0,
  "exchanges": ["Uniswap", "SushiSwap", "1inch"]
}
Sandwich Strategy

Execute front-running and back-running transactions around large trades to capture MEV from price impact.

⚠️ Advanced Strategy: Requires careful risk management and gas optimization.

Bot Deployment

Testnet Deployment

Test your bots on Ethereum testnets before deploying to mainnet:

Goerli Testnet✓ Supported
Sepolia Testnet✓ Supported
Polygon Mumbai✓ Supported

Mainnet Deployment

Deploy your tested bots to mainnet with one click:

// Deployment checklist:
✓ Bot tested on testnet
✓ Sufficient ETH for gas fees
✓ Risk parameters configured
✓ Monitoring alerts set up
✓ Emergency stop conditions defined

Custom Logic

For advanced users, JittoGen supports custom JavaScript logic to implement sophisticated trading strategies.

Custom Strategy Example
// Custom arbitrage logic with dynamic gas pricing
async function customArbitrageStrategy(opportunity) {
  const gasPrice = await getOptimalGasPrice();
  const profitAfterGas = opportunity.profit - (gasPrice * GAS_LIMIT);
  
  if (profitAfterGas > MIN_PROFIT_THRESHOLD) {
    return {
      execute: true,
      gasPrice: gasPrice,
      slippage: calculateDynamicSlippage(opportunity.volume)
    };
  }
  
  return { execute: false };
}

Bot Monitoring

Real-time Dashboard

Monitor your bots' performance with our comprehensive dashboard featuring:

Performance Metrics

  • • Total profit/loss
  • • Success rate
  • • Gas efficiency
  • • Transaction volume

Alerts & Notifications

  • • Profit threshold alerts
  • • Error notifications
  • • Gas price warnings
  • • Market condition changes

Performance Optimization

Gas Optimization

Maximize profits by optimizing gas usage and timing:

// Gas optimization strategies:
• Dynamic gas pricing based on network congestion
• Batch multiple operations in single transaction
• Use flashloans to reduce capital requirements
• Implement gas price prediction algorithms
• Set maximum gas limits to prevent overspending
Latency Optimization

Reduce execution latency for competitive advantage:

  • • Use multiple RPC endpoints for redundancy
  • • Implement mempool monitoring for early detection
  • • Optimize transaction broadcasting timing
  • • Use private mempools when beneficial

Performance Metrics

$2.4M+
Total MEV Captured
15,000+
Active Bots
99.7%
Success Rate

Need Help?

Our support team is available 24/7 to help you build and optimize your MEV bots.