Skip to main content
Launchpad Trade Delayed trading with configurable intervals between wallets
Same as Instant, but with a configurable delay between each wallet’s transaction. Ideal for making multi-wallet trades appear more natural.

What is Delayed?

Delayed works exactly like Instant: you can buy or sell with one or multiple wallets in a single request. The difference is that transactions are spaced out by a delay you define.
More natural trading pattern. Transactions don’t all hit the same block.

What Are the Delay Modes?

You can configure the delay in two ways:
ModeDescriptionExample
FixedExact interval between each transaction100ms between each
RangeRandom interval within a min/max rangeRandom between 200-300ms
Use Range mode for more organic-looking trades. The randomness makes patterns harder to detect.

How It Works

1

You send a request

Include multiple wallets and your delay configuration.
2

First wallet executes

The first transaction is sent immediately.
3

Delay applied

The system waits for your configured delay (fixed or random within range).
4

Next wallet executes

The next transaction is sent. This repeats until all wallets have traded.

How to Configure Delays

Fixed Delay

All transactions are spaced by exactly the same interval.
{
  "delay": {
    "type": "FIXED",
    "value": 100
  }
}
Value is in milliseconds. 100 = 100ms = 0.1 second between each transaction.

Range Delay

Each interval is randomly chosen between min and max values.
{
  "delay": {
    "type": "RANGE",
    "min": 200,
    "max": 300
  }
}
Each transaction will wait a random time between 200ms and 300ms before the next one.

Delayed vs Instant

InstantDelayed
ExecutionAll wallets target same blockWallets execute sequentially with delays
SpeedMaximum speedConfigurable pace
PatternSimultaneousSpread over time
Use caseSpeed is priorityNatural-looking trades

When to Use Delayed

When you want multi-wallet trades to look like independent users trading over time rather than a coordinated action.
When you want to accumulate or sell gradually rather than all at once.

What’s Next?