You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This configuration sends your transaction to ABC block builder, XYZ block builder, and Flashbots block builder.
100
100
101
+
### Mempool Configuration
102
+
103
+
You can configure our RPC endpoint to allow your transaction to fall back to the public mempool under specific conditions. This feature is useful for users who prioritize transaction inclusion, even if it means potentially sacrificing some MEV protection.
104
+
105
+
Your transaction will fall back to the mempool if:
106
+
107
+
1. The current block is not `mev-boost` enabled, or
108
+
2. Your transaction is not included within a 25-block range
109
+
110
+
To enable this feature, add the `useMempool` parameter to your Protect RPC URL:
111
+
112
+
```url
113
+
https://rpc.flashbots.net?useMempool=true
114
+
```
115
+
116
+
For analytics or other purposes, you can specify a custom mempool URL by adding the `mempoolRpc` parameter:
By default, Protect excludes transactions that would revert. If you want to include potentially reverting transactions, add the `canRevert` parameter to your Protect RPC URL:
124
+
125
+
```url
126
+
https://rpc.flashbots.net?canRevert=true
127
+
```
128
+
129
+
This option may be useful for specific use cases where transaction execution is not guaranteed or where you want to ensure submission regardless of the outcome.
130
+
101
131
### Refunds
102
132
103
133
You can tailor your refund settings using the refund parameter. This determines the distribution of the searcher's payment among different addresses for bundled transactions. If not specified, the transaction originator (tx.origin) will by default receive 90% of the searcher's payment.
0 commit comments