Skip to content

Latest commit

 

History

History
70 lines (35 loc) · 1.99 KB

the_mempool.md

File metadata and controls

70 lines (35 loc) · 1.99 KB

🎂 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 flashbot’s protect or rook’s 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