How We Achieve Sub-100ms Execution
By ForgeTools Team
Speed matters in Solana token launches. Here's how ForgeTools achieves sub-100ms from detection to bundle submission.
The detection pipeline
We use Yellowstone gRPC (Geyser) for real-time transaction streaming. When a new token creation instruction appears on-chain, our monitor classifies it within microseconds using deterministic instruction parsing — no regex fallback needed for the happy path.
Jito bundle submission
Instead of submitting individual transactions, ForgeTools bundles the token creation and snipe buy transactions into a single Jito bundle. This guarantees same-block execution and prevents front-running.
Adaptive tip tuning
Our warmup system starts with a low tip multiplier (0.6x) and automatically adjusts based on bundle landing rates. This minimizes cost while maintaining reliable execution.
What's next
We're exploring ShredStream UDP feeds for even lower latency detection. Stay tuned.