DEV Community

TateLyman
TateLyman

Posted on

Auto-Sniping New Solana Tokens with Jito MEV Protection — Building a Telegram Sniper Bot

Token Sniping on Solana

When a new token launches on Solana, the first few seconds determine everything. Bots that can detect and buy within seconds of launch can 10-100x before regular traders even see the token.

I added an auto-sniper feature to my Solana Telegram trading bot that:

  1. Polls DexScreener every 60 seconds for newly listed Solana tokens
  2. Auto-buys using a configurable SOL amount per snipe
  3. Uses Jito bundles for MEV-protected, priority transaction landing
  4. Rate-limits to 3 snipes per hour (safety)
  5. Notifies users in real-time with buy buttons for manual action

The Jito Integration

Every swap now goes through Jito's block engine first for MEV protection:

const { JitoJsonRpcClient } = require('jito-js-rpc');
const jito = new JitoJsonRpcClient('https://mainnet.block-engine.jito.wtf/api/v1');

async function sendViaJito(serializedTx) {
  const b64Tx = Buffer.from(serializedTx).toString('base64');
  const result = await jito.sendTxn({ body: b64Tx }, false);
  return result?.result || null;
}
Enter fullscreen mode Exit fullscreen mode

This means:

  • No front-running by MEV bots
  • Faster transaction landing (priority in block)
  • Fallback to regular RPC if Jito is unavailable

Features

The full bot includes:

  • Token sniper — auto-buy new launches
  • Copy trading — mirror whale wallets
  • DCA — scheduled recurring buys
  • Limit orders, stop-loss, take-profit
  • 3-tier referral system — earn 30% of your referrals' trading fees
  • Points system — Season 1 active, earn points for volume
  • Trending tokens — see what's hot right now
  • Safety scanner — check tokens before buying

Try It

@solscanitbot on Telegram

1% trading fee (0.9% with referral). Jito MEV protection on every trade.


Built by @tatelyman. Tips: NaTTUfDDQ8U1RBqb9q5rz6vJ22cWrrT5UAsXuxnb2Wr (SOL)

Top comments (0)