Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MEV to glossary #13479

Merged
merged 6 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/content/glossary/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ lang: en

<GlossaryDefinition term="message-call" />

<GlossaryDefinition term="mev" />

<GlossaryDefinition term="mining" />

<GlossaryDefinition term="miner" />
Expand Down
4 changes: 2 additions & 2 deletions src/intl/en/glossary.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@
"message-definition": "An <a href=\"/glossary/#internal-transaction\">internal transaction</a> that is never serialized and only sent within the <a href=\"/glossary/#evm\">EVM</evm>.",
"message-call-term": "Message call",
"message-call-definition": "The act of passing a <a href=\"/glossary/#message\">message</a> from one account to another. If the destination account is associated with <a href=\"/glossary/#evm\">EVM</a> code, then the VM will be started with the state of that object and the message acted upon.",
"mev-term": "MEV",
"mev-definition": "A mechanism prioritizing certain actions on a blockchain for a fee, influencing outcomes and the order of transactions.",
"mev-term": "Maximal Extractable Value (MEV)",
"mev-definition": "The maximum value that can be extracted from block production in excess of the standard block reward and gas fees by including, excluding, and changing the order of transactions in a block. <a href=\"/developers/docs/mev/\">More on Maximum Extractable Value (MEV)</a>.",
"mining-term": "Mining",
"mining-definition": "The process of repeatedly hashing a block header while incrementing a <a href=\"/glossary/#nonce\">nonce</a> until the result contains an arbitrary number of leading binary zeros. This is the process by which new <a href=\"/glossary/#block\">blocks</a> are added to a proof-of-work blockchain. This was how Ethereum was secured before it moved to proof-of-stake.",
"miner-term": "Miner",
Expand Down
Loading