Skip to content

Latest commit

 

History

History
71 lines (47 loc) · 1.73 KB

File metadata and controls

71 lines (47 loc) · 1.73 KB

Pumpfun_launch_bot

Pumpfun launch & sniper bot using jito

Screenshots

Features

  1. Create & buy new SPL token in the same transaction on Pump.fun
  2. Buy all SPL token balance as soon as possible.
  3. Create new wallet and repeat the above actions.
  4. Retrieve all SOL balance to the main wallet.

How to use

  1. Clone the repository

    git clone https://github.com/btcoin23/pumpfun_launch_bot.git
  2. Install dependencies

    yarn install
  3. Create and edit .env file

    PRIVATE_KEY=
    RPC_URL=
  4. Set your configuration on config.ts file

    export const splMetaData = {
        name: '',
        symbol: '',
        url: ''
    }// SPL token metadata
    
    export const buyAmount = 0.1 * LAMPORTS_PER_SOL; // first buy amount
    export const jitoTip = 0.001 * LAMPORTS_PER_SOL; // jito tip 
    
    export const duration_buy = 10 * 1000; // 10s before new buy
    export const duration_sell = 100; // 100ms before sell
    export const max_n = 5; // do buy/sell max_n times
  5. Run the bot

    npm start

Author