Skip to content

Commit 61142dd

Browse files
Add MEV protection. (#1908)
* MEV protection. Signed-off-by: bgravenorst <[email protected]> * Reviewer feedback. Signed-off-by: bgravenorst <[email protected]> * Apply suggestions from code review Co-authored-by: Alexandra Carrillo <[email protected]> * Remove Beta. Signed-off-by: bgravenorst <[email protected]> --------- Signed-off-by: bgravenorst <[email protected]> Co-authored-by: Alexandra Carrillo <[email protected]>
1 parent 97f7f21 commit 61142dd

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Returns information about a transaction for a given hash.
2+
3+
:::info MEV protection for users on the free tier
4+
Maximal Extractable Value (MEV) protection is applied for this method on Mainnet only.
5+
This means `r`, `s`, and `v` signature fields might return empty hex values (`0x0`)
6+
while the transaction is pending on Mainnet.
7+
:::
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Submits a pre-signed transaction for broadcast to the Ethereum network.
2+
3+
:::info MEV protection for users on the free tier
4+
Maximal Extractable Value (MEV) protection is applied for this method on Mainnet only. The method is automatically
5+
routed to a virtual mempool before the transaction is included in a public block.
6+
7+
This functionality offers protection from MEV strategies such as front running and sandwich attacks.
8+
:::

services/reference/ethereum/json-rpc-methods/eth_gettransactionbyhash.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: "eth_getTransactionByHash"
55
import Tabs from "@theme/Tabs"
66
import TabItem from "@theme/TabItem"
77

8-
import Description from "/services/reference/_partials/_eth_gettransactionbyhash-description.mdx"
8+
import Description from "./_eth_gettransactionbyhash-description.mdx"
99

1010
<Description />
1111

services/reference/ethereum/json-rpc-methods/eth_sendrawtransaction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: "eth_sendRawTransaction"
55
import Tabs from "@theme/Tabs"
66
import TabItem from "@theme/TabItem"
77

8-
import Description from "/services/reference/_partials/_eth_sendrawtransaction-description.mdx"
8+
import Description from "./_eth_sendrawtransaction-description.mdx"
99

1010
<Description />
1111

0 commit comments

Comments
 (0)