From 660c0fe0e4b3ad49225bb8296c304418006e2cde Mon Sep 17 00:00:00 2001 From: yi <67046731+yizhang0901@users.noreply.github.com> Date: Thu, 21 May 2026 12:45:06 -0400 Subject: [PATCH] remove flashbots_getMevRefundTotalByRecipient and flashbots_getMevRefundTotalBySender remove flashbots_getMevRefundTotalByRecipient and flashbots_getMevRefundTotalBySender --- .../advanced/rpc-endpoint.mdx | 58 ------------------- 1 file changed, 58 deletions(-) diff --git a/docs/flashbots-auction/advanced/rpc-endpoint.mdx b/docs/flashbots-auction/advanced/rpc-endpoint.mdx index 957d9f3d..7db4e48a 100644 --- a/docs/flashbots-auction/advanced/rpc-endpoint.mdx +++ b/docs/flashbots-auction/advanced/rpc-endpoint.mdx @@ -764,64 +764,6 @@ The response contains three fields: - `indexedUpTo`: the highest block number for which delayed refunds have been processed -### flashbots_getMevRefundTotalByRecipient - -Returns the total amount of [MEV refunds](/flashbots-protect/mev-refunds) that have been paid to a specific recipient address. This API not require authentication. - -#### Request - -```json -{ - "jsonrpc": "2.0", - "id": 1, - "method": "flashbots_getMevRefundTotalByRecipient", - "params": ["0xDCDDAE87EDF1D9F62AE2F3A66EB2018ACD0B2508"] -} -``` - -#### Response - -```json -{ - "jsonrpc": "2.0", - "id": 1, - "result": { - "total": "0xeff5f44e097dcfac" - } -} -``` - -Note: The total is returned as a hexadecimal string representing the amount in wei. - -### flashbots_getMevRefundTotalBySender - -Returns the total amount of [MEV refunds](/flashbots-protect/mev-refunds) that have been generated on transactions or bundles from a specific sender address. The sender is the `tx.origin` for individual transactions or bundles of size 1, or the Flashbots signer for bundles of size > 1. It may be different from the recipient if the recipient has been delegated to another address. - -This API does not require authentication. - -#### Request - -```json -{ - "jsonrpc": "2.0", - "id": 1, - "method": "flashbots_getMevRefundTotalBySender", - "params": ["0xDCDDAE87EDF1D9F62AE2F3A66EB2018ACD0B2508"] -} -``` - -#### Response - -```json -{ - "jsonrpc": "2.0", - "id": 1, - "result": { - "total": "0x4a817c800" - } -} -``` - ### API Response - All method supports JSON-RPC standards for success response and not supported for error response(V2 methods are exceptions).