blxr_info

REQUEST

Method: blxr_info

Returns bloXroute Ethereum address to use for the BackRunMe MEV bundles.

Parameters: None

Cloud-API:

This request method is only available at Cloud-API HTTPS POST endpoint https://backrunme.blxrbdn.com .

Examples

curl https://backrunme.blxrbdn.com \
    --insecure \
    -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: <YOUR-AUTHORIZATION-HEADER>" \
    -d '{"method": "blxr_info", 
                   "id": "1", 
                   "params": {}}'
     

RESPONSE

Result Fields

Result Field

Description

backrunme_address

bloXroute Ethereum address to receive profit shared by the searcher

Examples

{
    "jsonrpc": "2.0", 
    "id": "1", 
    "result": {
        "backrunme_address": "0x96...1c",
    }      
}    

Last updated