Skip to main content
DEX Spoofing feature showing Launchpad Trade privacy and spoofing capabilities
Enabled by default. Your trades are automatically spoofed.

What is DEX Spoofing?

When you look at a token’s transaction history on platforms like GMGN, Padre, or BullX, you see a list of wallets that bought or sold. Next to each wallet, these platforms often display a logo showing which trading tool was used: Photon, Axiom, BonkBot, etc. DEX Spoofing makes your Launchpad Trade transactions appear as if they came from one of these popular tools. Your wallet blends in with thousands of other traders, and no one can tell you’re using Launchpad Trade.

Where It Works

Your spoofed trades are visible on Padre, BullX, GMGN, and other Solana trading platforms.
DEX Spoofing example showing Axiom logo on Padre trading platform

Supported Logos

Your trades can appear as if made from: Photon · Axiom · BullX · Trojan · BonkBot · GMGN · Padre · PepeBoost · Maestro · Phantom
Your wallet address is still visible, but it looks like you’re using one of these popular trading tools instead of Launchpad Trade.

Configuration

DEX Spoofing is configured via the dex_spoofing parameter in your request.

Example Request

{
  "privateKeys": ["WALLET_PRIVATE_KEY"],
  "tokenAddress": "TOKEN_ADDRESS",
  "amount": {
    "type": "SOL",
    "value": 0.7
  },
  "slippage": {
    "type": "PERCENT",
    "value": 10
  },
  "priorityFee": {
    "mode": "FAST",
    "customValue": null
  },
  "dex_spoofing": {
    "name": "RANDOM",
    "mode": "NORMAL"
  }
}

Parameters

dex_spoofing.name
string
default:"RANDOM"
Which platform logo to display. Options:
  • RANDOM: Randomly selects from the list below (or none)
  • PHOTON, AXIOM, BULLX, TROJAN, BONKBOT, GMGN, PADRE, PEPEBOOST, MAESTRO, PHANTOM: Display a specific logo
  • FALSE: Disable DEX Spoofing
dex_spoofing.mode
string
default:"NORMAL"
Spoofing mode. Options:
  • NORMAL: Standard spoofing (default)
  • BYPASS: Enhanced compatibility with GMGN. Costs 0.001 SOL per transaction
BYPASS mode works better on GMGN but adds 0.001 SOL to each transaction. Only use it if you specifically need GMGN compatibility.

Examples

Randomly selects a logo from the supported list, or displays none.
{
  "dex_spoofing": {
    "name": "RANDOM",
    "mode": "NORMAL"
  }
}

Supported Endpoints

DEX Spoofing works on all endpoints that perform swaps (buy or sell).

What’s Next?