mev-toolkit/MEV_by_chains/MEV_on_Ethereum/the_mempool.md
mvonsteinkirch d3a292bfd1 💾
2023-02-08 09:08:45 -08:00

2 KiB
Raw Blame History

🎂 the mempool (the dark forest)

tl;dr


  • the mempool is the ethereum memory pool, where pending new txs wait to be confirmed, i.e., validated and included into new blocks.
  • ethereum has a public mempool and many private mempool spaces (such as the ones provided by flashbots protect or rooks coordinator).
  • this means that nodes and associated entities are entitled to configure their own rules for their mempool by allowing private (exclusive) order flow to
  • txs to be included in blocks, while not visible in the public mempool.

https://docs.google.com/presentation/d/1ADPiTVWEVQ8nBGLMRdx5GmSFdrrKi3OzsbyedOcVLWk/edit#slide=id.g141d1b1a5ae_0_165

mempool monitoring providers


mempool monitoring open-source code


find extracted mev

  1. look at each Ethereum's transaction trace
  2. parse it and go through the token transfers
  3. calculate the starting balance of the sender address and its ending balance (taking into account proxy addresses)

Extracted MEV = Successful MEV transactions + Successful MEV transactions gas fees + Failed MEV transactions gas fees


Failed MEV transactions gas fees = Reverted MEV transactions gas fees + Checked MEV transactions gas fees

references