
What is Delayed?
A single API request that executes buy or sell orders across one or multiple wallets with a configurable delay between each transaction.- Multiple wallets: Wallets execute one after another with a defined interval between each
Unlike Instant, which sends all transactions in parallel targeting the same block, Delayed sends transactions sequentially with a configured gap between each.
How It Works
Delay Modes
| Mode | Description | When to use |
|---|---|---|
FIXED | Exact interval between each transaction | Consistent, predictable timing |
RANGE | Random interval between min and max | Variable spacing between transactions |
45-Second Limit
The Delayed endpoint is synchronous — the HTTP response waits for all wallets to finish executing. To prevent connection timeouts, requests are rejected before execution if the estimated duration exceeds 45 seconds. Formula:(numberOfWallets − 1) × maxDelay ≤ 45,000ms
| Wallets | Max delay | Estimated duration | Accepted |
|---|---|---|---|
| 5 | 2,000ms | ~8s | ✅ |
| 10 | 2,000ms | ~18s | ✅ |
| 15 | 3,000ms | ~42s | ✅ |
| 20 | 3,000ms | ~57s | ❌ |
| 30 | 2,000ms | ~58s | ❌ |
When to Use Delayed
Progressive position building
Progressive position building
Accumulate across multiple wallets over time rather than all at once. Useful when you want to build a position gradually without concentrating all entries in the same block.
Staged position exit
Staged position exit
Exit a position progressively across multiple wallets. Each sell has time to settle before the next one executes.
Time-distributed multi-wallet entry
Time-distributed multi-wallet entry
Coordinate entries across wallets with configurable spacing between each transaction. Use RANGE mode for variable intervals.
Delayed vs Instant
| Instant | Delayed | |
|---|---|---|
| Execution | All wallets — same block | Wallets execute one by one |
| Timing | Simultaneous | Configurable interval |
| Response time | Fast | Proportional to total delay |
| 45s limit | No | Yes — (wallets − 1) × maxDelay |
| Use case | Maximum speed | Time-distributed execution |
What’s Next?
Buy
Execute delayed buy orders with one or multiple wallets
Sell
Sell tokens with configurable delays between wallets
Instant Trading
Execute all wallets in the same block for maximum speed