mev-toolkit/MEV_on_Ethereum
Dr. Mia von Steinkirch 613534d30d
Update README.md
2022-10-20 17:52:41 -07:00
..
2022-09-23 06:06:31 -07:00
2022-09-23 06:06:13 -07:00
2022-10-19 19:34:05 -07:00
2022-10-20 17:52:41 -07:00

🏴‍☠️ mev on ethereum


in this repo



Screen Shot 2022-10-17 at 10 19 34 PM

resource


terminology

  • Block builder The agent responsible for assembling the potential contents of a block (i.e. the set of transactions that makes up the “payload” of a block). In Proof of Work Ethereum its the miner. In Proof of Stake Ethereum its the validator, but this activity can separated from the validator via PBS, in which case builders need to submit bids for blocks to be included to the block proposer for inclusion.

  • Block proposer The agent responsible for proposing new blocks in a blockchain. In Proof of Work Ethereum its the miner. In Proof of Stake Ethereum its the validator.

  • Node Operator An organization/entity/person that operates validators.

  • PBS Proposer Builder Separation, see: State of research: increasing censorship resistance of transactions under proposer/builder separation (PBS).

  • Staker: A user/organization/etc. which holds (w)stETH

  • feeRecipient: field set by the block builder in the block header (coinbase address)

  • payment methods on Ethereum:

    • base_fee: amount defined by the protocol, always paid from user -> network
    • priority_fee: amount defined by the user as maxPriorityFeePerGas, paid from user -> coinbase address
    • block.coinbase transfer: the EVM has an opcode which allows end user to send fund directly to the coinbase address (same recipient as priority_fee
    • regular transfer: a transaction created to send eth to other account


resources