diff --git a/MEV_by_chains/MEV_on_Ethereum/eip-1559.md b/MEV_by_chains/MEV_on_Ethereum/eip-1559.md
index 12cc287..7f8c25f 100644
--- a/MEV_by_chains/MEV_on_Ethereum/eip-1559.md
+++ b/MEV_by_chains/MEV_on_Ethereum/eip-1559.md
@@ -1,43 +1,44 @@
## mev and eip-1559
+
### tl; dr
-
+- the incorporation of eip-1559 in the london hardfork brought a major restructuring of the ethereum fee mechanism, aiming to allow for easier fee estimation by users and consolidate eth as the base currency of the network by burning part of the transaction fees.
-
-
+- eip-1559 changed this fee market: users now pay a fee consisting of a base fee, which is burned, and a tip, that goes to the block builder.
+ - the maximum block size doubled to 30 million gas units, however, the target block size is half of that.
+ - if there are few users willing to pay the base fee and the block size is below the target, the base fee decreases.
+ - similarly, if the block size is above the target, the base fee increases.
+- under the new fee mechanism, instead of choosing a gas price for their transactions, users set a "priority fee" for miners to incentivize inclusion, alongside a "max fee", stating the absolute maximum price that they are willing to pay.
+ - the protocol now sets a per-block "basefee", computed programmatically from the amount of gas used in the block immediately before, in a negative feedback loop meant for block sizes to stabilize around a target size $s_0$ (initially equal to the maximum current block size).
-- The incorporation of EIP-1559 in the London hardfork brought a major restructuring of the Ethereum fee mechanism, aiming to allow for easier
-fee estimation by users and consolidate ETH as the base currency of the network by burning part of the transaction fees.
+- valid transactions pay a gas price equal to the basefee plus the prioirity fee (only up to the max fee needed in case of sudden basefee increases).
+ - the prioirity fee goes to the miner, and, crucially, the basefee is burnt.
-- EIP-1559 changed this fee market. Users now pay a fee consisting of a base fee, which is burned, and a tip, that goes to the block builder.
-The maximum block size doubled to 30 million gas units, however, the target block size is half of that. If there are few users willing to pay the base fee and the block size is below the target, the base fee decreases. Similarly, if the block size is above the target, the base fee increases.
+- implications for mev-related infrastructure: eliminate the possibility of zero-gwei transactions, which are presently used for frontrunning protection in some DEXes, where miner fees are taken directly from the transferred tokens.
-- In other words, under the new fee mechanism, instead of choosing a gas price for their transactions, users set a "priority fee" for miners to incentivize inclusion, alongside a "max fee", stating the absolute maximum price that they are willing to pay. The protocol now sets a per-block "basefee", computed programmatically from the amount of gas used in the block immediately before, in a negative feedback loop meant for block sizes to stabilize around a target size $s_0$ (initially equal to the maximum current block size).
-
-- Valid transactions pay a gas price equal to the basefee plus the prioirity fee (only up to the max fee needed in case of sudden basefee increases). The prioirity fee goes to the miner, and, crucially, the basefee is burnt.
-
-- Implications for MEV-related infrastructure: eliminate the possibility of zero-Gwei transactions, which are presently used for frontrunning
-protection in some DEXes, where miner fees are taken directly from the transferred tokens.
-
-- eip1559 is kind of a perpetual second-price auction. The basefee floats to price out exactly enough users such that the remaining ones fill the block to capacity. Sometimes it increases (as in English auctions), when the demand is higher than the supply, and sometimes it decreases (as in Dutch auctions), when the demand is lower than the supply.
+- eip-1559 is kind of a perpetual second-price auction. the base fee floats to price out exactly enough users such that the remaining ones fill the block to capacity.
+ - sometimes it increases (as in english auctions), when the demand is higher than the supply, and sometimes it decreases (as in dutch auctions), when the demand is lower than the supply.
-
-
-
+
+
+
+