Update and rename notes/the_mempool_and_mev.md to notes/MEV/the_mempool_and_mev.md

This commit is contained in:
bt3gl 2022-03-27 13:09:11 +01:00 committed by GitHub
parent 127f93e19c
commit 1db4b93ac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```
<br>
---
## References