From 1db4b93ac43c2f2bbd39806374f30cfb21dc63d3 Mon Sep 17 00:00:00 2001 From: bt3gl <1130416+bt3gl@users.noreply.github.com> Date: Sun, 27 Mar 2022 13:09:11 +0100 Subject: [PATCH] Update and rename notes/the_mempool_and_mev.md to notes/MEV/the_mempool_and_mev.md --- notes/{ => MEV}/the_mempool_and_mev.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) rename notes/{ => MEV}/the_mempool_and_mev.md (75%) diff --git a/notes/the_mempool_and_mev.md b/notes/MEV/the_mempool_and_mev.md similarity index 75% rename from notes/the_mempool_and_mev.md rename to notes/MEV/the_mempool_and_mev.md index 4d1fd12..dab2456 100644 --- a/notes/the_mempool_and_mev.md +++ b/notes/MEV/the_mempool_and_mev.md @@ -20,6 +20,23 @@ * Usually loo for specific types of transactions in the mempool, such as DEX trade or an oracle update + +## To 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