Gas Auctions and Block Building: How Your Transaction Gets Included

Every Ethereum transaction enters an auction for blockspace. Here is who builds the block, how the auction is settled, and what determines your inclusion latency.

The path from your wallet's 'sign and submit' tap to your transaction landing on-chain is a sophisticated multi-party process: you submit to a node, the node propagates to the mempool, builders construct candidate blocks bidding for inclusion in the next slot, the proposer accepts the highest-paying bundle, and the validator publishes the block. Most users never see this layer, but it determines how fast and how cheaply your transactions confirm.

EIP-1559 Recap

MEV-Boost and the Builder Layer

Since the Merge, Ethereum validators outsource block construction to specialised builders. A builder ingests the public mempool plus private order flow (Flashbots, MEV-Share, BloXroute) and constructs the most profitable block. The builder pays the validator a 'bid' for proposing the builder's block. The validator picks the highest bid via the MEV-Boost relay. This separation means the validator does not need to be sophisticated — they just sell their block-proposal rights to the builder market.

Where Your Transaction Actually Sits

Inclusion Latency Math

Practical Takeaways

For high-stakes trades, use a private-mempool RPC (most wallets including Steyble default to one) and set a tip that comfortably exceeds the current marginal builder bid. For low-stakes transfers, the base-fee tip is fine — your tx will land in 1-3 blocks. For multi-step DeFi transactions where partial execution is dangerous (e.g., a leveraged loop), prefer atomic-bundle inclusion through Flashbots so all legs land in the same block or none of them do.