The signal was correct.
The price was visible.
The slippage looked safe.
The transaction was signed.
But it arrived late.
The pool moved.
The fill vanished.
The trader blames volatility.
The real issue?
Propagation latency.
Speed = Inclusion
Execution Reality
If your transaction propagates slowly, your fill probability collapses — even if your strategy was correct.
Propagation Is the Hidden Variable in Execution
Most traders think execution quality depends on:
- Gas price
- Slippage tolerance
- Liquidity depth
But there is a deeper variable:
How fast and how widely your transaction propagates through the network.
Transaction propagation determines:
- Who sees your trade first
- Which validator / builder receives it
- Whether it competes in the intended block
- Whether adversaries react before inclusion
Propagation delay directly reduces inclusion probability, which directly reduces fill probability.
What Is Transaction Propagation?
When you sign and broadcast a transaction:
- It is sent to an RPC endpoint.
- The RPC relays it to one or more nodes.
- Nodes gossip it across peers.
- Validators / builders receive it.
- It enters block construction.
Every hop introduces latency.
And in volatile markets:
100–300 milliseconds can mean multiple price movements.
Why Propagation Impacts Fill Probability
Fill probability depends on three timing windows:
- Signal window – when your trade decision is valid
- Liquidity window – when pool state matches your expectation
- Inclusion window – when your transaction is eligible for the block
If propagation delays your transaction:
- Liquidity shifts
- Competing swaps execute first
- Arbitrage closes the opportunity
- Your minOut fails
Execution Failure Drivers
Where fill probability degrades
Propagation is not a side detail.
It is a core execution parameter.
Public vs Private Propagation
Propagation strategy determines adversarial exposure.
| Public Broadcast | Private Propagation |
|---|---|
| Visible to mempool searchers | Hidden until block construction |
| Subject to sandwich risk | Reduced pre-trade signaling |
| Gossip-based latency | Direct builder delivery |
| Uncontrolled pathing | Deterministic routing path |
Public propagation risks:
- Intent leakage
- Sandwich attacks
- Latency variance
- Builder uncertainty
Private propagation benefits:
- Faster inclusion path
- Reduced searcher visibility
- Controlled routing
- Higher inclusion stability
The Mathematics of Delay
Let:
T_signal= decision timestampT_broadcast= broadcast timeT_inclusion= block inclusion time
Propagation delay = T_inclusion - T_broadcast
If price volatility = σ
Expected slippage drift ≈ σ × delay
Higher delay → higher expected execution drift → lower fill probability.
In volatile markets, delay compounds fast.
Multi-Path Propagation Architecture
Execution-grade systems do not rely on a single RPC.
They use:
- Multi-region RPC endpoints
- Private relays
- Builder connections
- Bundle markets (chain-specific)
- Redundant broadcast paths
Single RPC = Single Failure Domain
If your transaction depends on one RPC endpoint, your fill probability depends on its latency and uptime.
Multi-Path = Redundancy
Broadcasting through diversified paths reduces tail latency and improves block inclusion probability.
Propagation and Builder Selection
On builder-market chains (like Ethereum-style PBS):
- Different builders receive different orderflow.
- Not all builders win every block.
- Late arrival means missing the winning builder.
Propagation strategy should:
- Identify likely winning builders.
- Deliver directly when possible.
- Escalate priority when inclusion probability drops.
Inclusion probability is not static.
It must be measured in real time.
Chain-Specific Propagation Dynamics
| Environment | Primary Propagation Risk | Optimization Strategy |
|---|---|---|
| Ethereum | Builder market fragmentation | Private relays + adaptive tips |
| Solana | Ultra-low latency competition | Fast RPC + bundle delivery |
| BSC | High mempool noise | Fee discipline + multi-endpoint broadcast |
| L2s | Sequencer centralization | Sequencer-aware routing |
Propagation is chain-native.
There is no universal solution.
Propagation Telemetry: What You Must Measure
If you are serious about execution:
Track:
- Time-to-first-peer
- Time-to-builder receipt
- Inclusion percentile
- Rebid latency
- Failure cause attribution
Without telemetry, propagation is invisible.
And invisible risk is unmanaged risk.
The Practical Blueprint
An execution-aware propagation engine includes:
-
Latency Scoring Module
Rank RPC endpoints by response and inclusion history. -
Propagation Orchestrator
Multi-path broadcast with controlled duplication. -
Inclusion Monitor
Track mempool position + block builder competition. -
Adaptive Fee Engine
Reprice if inclusion probability falls below threshold. -
Feedback Loop
Attribute failed fills to delay vs liquidity shift.
Execution is not just about price.
It is about arrival time.
Final Principle
A trade fails not only because it was wrong.
It fails because:
- It arrived late
- It was seen by the wrong actors
- It missed the winning builder
- It lost the liquidity window
Transaction propagation directly shapes:
- Inclusion probability
- Slippage outcome
- MEV exposure
- Final PnL
In modern markets:
Speed is not an optimization.
It is survival.